3e04d2e3db
Closes #5806 Closes #5950 Closes #7178 Closes #8259 Closes #8578 Closes #8851 Closes #9129 Closes #10412
25 lines
833 B
Rust
25 lines
833 B
Rust
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
// file at the top-level directory of this distribution and at
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
// option. This file may not be copied, modified, or distributed
|
|
// except according to those terms.
|
|
|
|
pub struct UninterpretedOption_NamePart {
|
|
name_part: Option<~str>,
|
|
}
|
|
|
|
impl<'a> UninterpretedOption_NamePart {
|
|
pub fn default_instance() -> &'static UninterpretedOption_NamePart {
|
|
static instance: UninterpretedOption_NamePart = UninterpretedOption_NamePart {
|
|
name_part: None,
|
|
};
|
|
&'static instance
|
|
}
|
|
}
|
|
|
|
pub fn main() {}
|