pub enum BoundedStrError {
TooShort,
TooLong,
TooManyBytes,
InvalidContent,
MutationFailed,
}Variants§
Trait Implementations§
Source§impl Clone for BoundedStrError
impl Clone for BoundedStrError
Source§fn clone(&self) -> BoundedStrError
fn clone(&self) -> BoundedStrError
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 BoundedStrError
impl Debug for BoundedStrError
Source§impl PartialEq for BoundedStrError
impl PartialEq for BoundedStrError
impl Copy for BoundedStrError
impl Eq for BoundedStrError
impl StructuralPartialEq for BoundedStrError
Auto Trait Implementations§
impl Freeze for BoundedStrError
impl RefUnwindSafe for BoundedStrError
impl Send for BoundedStrError
impl Sync for BoundedStrError
impl Unpin for BoundedStrError
impl UnwindSafe for BoundedStrError
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