Struct byte_unit::ExceededBoundsError
source · pub struct ExceededBoundsError;
Available on crate features
byte
or bit
only.Expand description
The error type returned when it exceeds representation range.
Trait Implementations§
source§impl Clone for ExceededBoundsError
impl Clone for ExceededBoundsError
source§fn clone(&self) -> ExceededBoundsError
fn clone(&self) -> ExceededBoundsError
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 ExceededBoundsError
impl Debug for ExceededBoundsError
source§impl Display for ExceededBoundsError
impl Display for ExceededBoundsError
source§impl Error for ExceededBoundsError
Available on crate feature std
only.
impl Error for ExceededBoundsError
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 ExceededBoundsError
impl PartialEq for ExceededBoundsError
source§fn eq(&self, other: &ExceededBoundsError) -> bool
fn eq(&self, other: &ExceededBoundsError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ExceededBoundsError
impl Eq for ExceededBoundsError
impl StructuralEq for ExceededBoundsError
impl StructuralPartialEq for ExceededBoundsError
Auto Trait Implementations§
impl RefUnwindSafe for ExceededBoundsError
impl Send for ExceededBoundsError
impl Sync for ExceededBoundsError
impl Unpin for ExceededBoundsError
impl UnwindSafe for ExceededBoundsError
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