Struct tai_time::OutOfRangeError
source · pub struct OutOfRangeError(/* private fields */);Expand description
The error type returned when the result of a conversion to or from a
TaiTime is outside the representable range.
Trait Implementations§
source§impl Clone for OutOfRangeError
impl Clone for OutOfRangeError
source§fn clone(&self) -> OutOfRangeError
fn clone(&self) -> OutOfRangeError
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 OutOfRangeError
impl Debug for OutOfRangeError
source§impl<'de> Deserialize<'de> for OutOfRangeError
impl<'de> Deserialize<'de> for OutOfRangeError
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 Display for OutOfRangeError
impl Display for OutOfRangeError
source§impl Error for OutOfRangeError
Available on crate feature std only.
impl Error for OutOfRangeError
Available on crate feature
std only.1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl PartialEq for OutOfRangeError
impl PartialEq for OutOfRangeError
source§fn eq(&self, other: &OutOfRangeError) -> bool
fn eq(&self, other: &OutOfRangeError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for OutOfRangeError
impl Serialize for OutOfRangeError
impl Copy for OutOfRangeError
impl Eq for OutOfRangeError
impl StructuralPartialEq for OutOfRangeError
Auto Trait Implementations§
impl Freeze for OutOfRangeError
impl RefUnwindSafe for OutOfRangeError
impl Send for OutOfRangeError
impl Sync for OutOfRangeError
impl Unpin for OutOfRangeError
impl UnwindSafe for OutOfRangeError
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