pub enum StampValueError {
ExceedsMaximum {
value: u16,
},
}Variants§
Trait Implementations§
Source§impl Clone for StampValueError
impl Clone for StampValueError
Source§fn clone(&self) -> StampValueError
fn clone(&self) -> StampValueError
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 moreimpl Copy for StampValueError
Source§impl Debug for StampValueError
impl Debug for StampValueError
Source§impl Display for StampValueError
impl Display for StampValueError
impl Eq for StampValueError
Source§impl Error for StampValueError
Available on crate feature std only.
impl Error for StampValueError
Available on crate feature
std only.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 StampValueError
impl PartialEq for StampValueError
impl StructuralPartialEq for StampValueError
Auto Trait Implementations§
impl Freeze for StampValueError
impl RefUnwindSafe for StampValueError
impl Send for StampValueError
impl Sync for StampValueError
impl Unpin for StampValueError
impl UnsafeUnpin for StampValueError
impl UnwindSafe for StampValueError
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