pub struct LocalityAge {Show 14 fields
pub age_id: i32,
pub age_mav: Option<f64>,
pub age_pmv: Option<f64>,
pub age_ma2v: Option<f64>,
pub age_pm2v: Option<f64>,
pub agemethod: Option<String>,
pub agereference: Option<String>,
pub age_ma: Option<String>,
pub age_pm: Option<String>,
pub age_ma2: Option<String>,
pub age_pm2: Option<String>,
pub ages1: Option<i32>,
pub ages2: Option<i32>,
pub age_type: Option<i32>,
}Expand description
Locality age information.
Fields§
§age_id: i32Age ID.
age_mav: Option<f64>Age MA value.
age_pmv: Option<f64>Age PM value.
age_ma2v: Option<f64>Age MA2 value.
age_pm2v: Option<f64>Age PM2 value.
agemethod: Option<String>Age method.
agereference: Option<String>Age reference.
age_ma: Option<String>Age MA string.
age_pm: Option<String>Age PM string.
age_ma2: Option<String>Age MA2 string.
age_pm2: Option<String>Age PM2 string.
ages1: Option<i32>Ages 1.
ages2: Option<i32>Ages 2.
age_type: Option<i32>Age type.
Trait Implementations§
Source§impl Clone for LocalityAge
impl Clone for LocalityAge
Source§fn clone(&self) -> LocalityAge
fn clone(&self) -> LocalityAge
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 LocalityAge
impl Debug for LocalityAge
Source§impl<'de> Deserialize<'de> for LocalityAge
impl<'de> Deserialize<'de> for LocalityAge
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 LocalityAge
impl RefUnwindSafe for LocalityAge
impl Send for LocalityAge
impl Sync for LocalityAge
impl Unpin for LocalityAge
impl UnwindSafe for LocalityAge
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