pub struct DOMES {
pub area: u16,
pub site: u8,
pub point: TrackingPoint,
pub sequential: u16,
}Expand description
DOMES site identification number, see https://itrf.ign.fr/en/network/domes/description.
Fields§
§area: u16Area / Country code (3 digits)
site: u8Area site number (2 digits)
point: TrackingPointTracking point
sequential: u16Sequential number (3 digits)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DOMES
impl<'de> Deserialize<'de> for DOMES
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<DOMES, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DOMES, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for DOMES
impl Ord for DOMES
Source§impl PartialOrd for DOMES
impl PartialOrd for DOMES
Source§impl Serialize for DOMES
impl Serialize for DOMES
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for DOMES
impl Eq for DOMES
impl StructuralPartialEq for DOMES
Auto Trait Implementations§
impl Freeze for DOMES
impl RefUnwindSafe for DOMES
impl Send for DOMES
impl Sync for DOMES
impl Unpin for DOMES
impl UnwindSafe for DOMES
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more