#[non_exhaustive]pub enum XRPLTimeRangeException {
InvalidTimeBeforeEpoch {
min: i64,
found: i64,
},
UnexpectedTimeOverflow {
max: i64,
found: i64,
},
InvalidLocalTime,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for XRPLTimeRangeException
impl Clone for XRPLTimeRangeException
Source§fn clone(&self) -> XRPLTimeRangeException
fn clone(&self) -> XRPLTimeRangeException
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 XRPLTimeRangeException
impl Debug for XRPLTimeRangeException
Source§impl Display for XRPLTimeRangeException
impl Display for XRPLTimeRangeException
Source§impl Error for XRPLTimeRangeException
impl Error for XRPLTimeRangeException
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 From<XRPLTimeRangeException> for XRPLUtilsException
impl From<XRPLTimeRangeException> for XRPLUtilsException
Source§fn from(source: XRPLTimeRangeException) -> Self
fn from(source: XRPLTimeRangeException) -> Self
Converts to this type from the input type.
Source§impl PartialEq for XRPLTimeRangeException
impl PartialEq for XRPLTimeRangeException
impl StructuralPartialEq for XRPLTimeRangeException
Auto Trait Implementations§
impl Freeze for XRPLTimeRangeException
impl RefUnwindSafe for XRPLTimeRangeException
impl Send for XRPLTimeRangeException
impl Sync for XRPLTimeRangeException
impl Unpin for XRPLTimeRangeException
impl UnwindSafe for XRPLTimeRangeException
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