pub enum MaxAgeError {
LessOrEqualViolated,
}
Available on crate feature
lambda
only.Variants§
LessOrEqualViolated
Trait Implementations§
Source§impl Clone for MaxAgeError
impl Clone for MaxAgeError
Source§fn clone(&self) -> MaxAgeError
fn clone(&self) -> MaxAgeError
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 MaxAgeError
impl Debug for MaxAgeError
Source§impl Display for MaxAgeError
impl Display for MaxAgeError
Source§impl Error for MaxAgeError
impl Error for MaxAgeError
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 MaxAgeError
impl PartialEq for MaxAgeError
impl Eq for MaxAgeError
impl StructuralPartialEq for MaxAgeError
Auto Trait Implementations§
impl Freeze for MaxAgeError
impl RefUnwindSafe for MaxAgeError
impl Send for MaxAgeError
impl Sync for MaxAgeError
impl Unpin for MaxAgeError
impl UnwindSafe for MaxAgeError
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