pub struct LocalityType {
pub lt_id: i32,
pub lt_text: String,
pub lt_parent: Option<i32>,
pub lt_sortorder: Option<i16>,
pub lt_erratic: Option<i32>,
pub lt_area: Option<i32>,
pub lt_underground: Option<i32>,
}Expand description
Locality type information.
Fields§
§lt_id: i32Type ID.
lt_text: StringType text.
lt_parent: Option<i32>Parent type ID.
lt_sortorder: Option<i16>Sort order.
lt_erratic: Option<i32>Erratic flag.
lt_area: Option<i32>Area flag.
lt_underground: Option<i32>Underground flag.
Trait Implementations§
Source§impl Clone for LocalityType
impl Clone for LocalityType
Source§fn clone(&self) -> LocalityType
fn clone(&self) -> LocalityType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LocalityType
impl Debug for LocalityType
Source§impl<'de> Deserialize<'de> for LocalityType
impl<'de> Deserialize<'de> for LocalityType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LocalityType
impl RefUnwindSafe for LocalityType
impl Send for LocalityType
impl Sync for LocalityType
impl Unpin for LocalityType
impl UnwindSafe for LocalityType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more