Struct fhir_model::Integer64
source · pub struct Integer64(pub i64);Expand description
FHIR integer64 type. Wraps an i64, but serializes and deserializes as
string.
Tuple Fields§
§0: i64Methods from Deref<Target = i64>§
pub const MIN: i64 = -9_223_372_036_854_775_808i64
pub const MAX: i64 = 9_223_372_036_854_775_807i64
pub const BITS: u32 = 64u32
Trait Implementations§
source§impl<'de> Deserialize<'de> for Integer64
impl<'de> Deserialize<'de> for Integer64
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 Integer64
impl Ord for Integer64
source§impl PartialEq for Integer64
impl PartialEq for Integer64
source§impl PartialOrd for Integer64
impl PartialOrd for Integer64
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 Integer64
impl Eq for Integer64
impl StructuralEq for Integer64
impl StructuralPartialEq for Integer64
Auto Trait Implementations§
impl RefUnwindSafe for Integer64
impl Send for Integer64
impl Sync for Integer64
impl Unpin for Integer64
impl UnwindSafe for Integer64
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