Struct icu_calendar::types::NanoSecond
source · pub struct NanoSecond(u32);
Expand description
A fractional second component, stored as nanoseconds.
Must be within inclusive bounds [0, 999_999_999]
.
Tuple Fields§
§0: u32
Implementations§
source§impl NanoSecond
impl NanoSecond
Trait Implementations§
source§impl Clone for NanoSecond
impl Clone for NanoSecond
source§fn clone(&self) -> NanoSecond
fn clone(&self) -> NanoSecond
Returns a copy 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 NanoSecond
impl Debug for NanoSecond
source§impl Default for NanoSecond
impl Default for NanoSecond
source§fn default() -> NanoSecond
fn default() -> NanoSecond
Returns the “default value” for a type. Read more
source§impl From<NanoSecond> for u32
impl From<NanoSecond> for u32
source§fn from(input: NanoSecond) -> Self
fn from(input: NanoSecond) -> Self
Converts to this type from the input type.
source§impl From<NanoSecond> for usize
impl From<NanoSecond> for usize
source§fn from(input: NanoSecond) -> Self
fn from(input: NanoSecond) -> Self
Converts to this type from the input type.
source§impl FromStr for NanoSecond
impl FromStr for NanoSecond
source§impl Hash for NanoSecond
impl Hash for NanoSecond
source§impl Ord for NanoSecond
impl Ord for NanoSecond
source§fn cmp(&self, other: &NanoSecond) -> Ordering
fn cmp(&self, other: &NanoSecond) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for NanoSecond
impl PartialEq for NanoSecond
source§fn eq(&self, other: &NanoSecond) -> bool
fn eq(&self, other: &NanoSecond) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for NanoSecond
impl PartialOrd for NanoSecond
source§fn partial_cmp(&self, other: &NanoSecond) -> Option<Ordering>
fn partial_cmp(&self, other: &NanoSecond) -> Option<Ordering>
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 moresource§impl TryFrom<u32> for NanoSecond
impl TryFrom<u32> for NanoSecond
source§impl TryFrom<usize> for NanoSecond
impl TryFrom<usize> for NanoSecond
impl Copy for NanoSecond
impl Eq for NanoSecond
impl StructuralPartialEq for NanoSecond
Auto Trait Implementations§
impl Freeze for NanoSecond
impl RefUnwindSafe for NanoSecond
impl Send for NanoSecond
impl Sync for NanoSecond
impl Unpin for NanoSecond
impl UnwindSafe for NanoSecond
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