pub struct Timestamp64Error {
pub seconds: u64,
pub nanos: u32,
}
Expand description
seconds
or nanos
cannot be represented
Fields§
§seconds: u64
Requested seconds that exceeded the 34‑bit range.
nanos: u32
Requested nanoseconds that exceeded the 30‑bit range.
Trait Implementations§
Source§impl Clone for Timestamp64Error
impl Clone for Timestamp64Error
Source§fn clone(&self) -> Timestamp64Error
fn clone(&self) -> Timestamp64Error
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 Timestamp64Error
impl Debug for Timestamp64Error
Source§impl Ord for Timestamp64Error
impl Ord for Timestamp64Error
Source§fn cmp(&self, other: &Timestamp64Error) -> Ordering
fn cmp(&self, other: &Timestamp64Error) -> 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 Timestamp64Error
impl PartialEq for Timestamp64Error
Source§impl PartialOrd for Timestamp64Error
impl PartialOrd for Timestamp64Error
impl Copy for Timestamp64Error
impl Eq for Timestamp64Error
impl StructuralPartialEq for Timestamp64Error
Auto Trait Implementations§
impl Freeze for Timestamp64Error
impl RefUnwindSafe for Timestamp64Error
impl Send for Timestamp64Error
impl Sync for Timestamp64Error
impl Unpin for Timestamp64Error
impl UnwindSafe for Timestamp64Error
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