pub enum EpochError {
EmptyLabel,
NonFiniteJulianDate,
NonFiniteModifiedJulianDate,
}Variants§
Trait Implementations§
Source§impl Clone for EpochError
impl Clone for EpochError
Source§fn clone(&self) -> EpochError
fn clone(&self) -> EpochError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EpochError
impl Debug for EpochError
Source§impl Display for EpochError
impl Display for EpochError
Source§impl Error for EpochError
impl Error for EpochError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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 EpochError
impl PartialEq for EpochError
Source§fn eq(&self, other: &EpochError) -> bool
fn eq(&self, other: &EpochError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for EpochError
impl Eq for EpochError
impl StructuralPartialEq for EpochError
Auto Trait Implementations§
impl Freeze for EpochError
impl RefUnwindSafe for EpochError
impl Send for EpochError
impl Sync for EpochError
impl Unpin for EpochError
impl UnsafeUnpin for EpochError
impl UnwindSafe for EpochError
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