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<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
source§impl Ord for DOMES
impl Ord for DOMES
source§impl PartialEq for DOMES
impl PartialEq for DOMES
source§impl PartialOrd for DOMES
impl PartialOrd for DOMES
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl 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: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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