pub enum BinaryError {
InvalidCharacters,
AlreadyHasWhitespace,
InvalidByteSize,
UnknownError,
}
Expand description
§BinaryString
Error-Handling
This is a enum that is used specifically for Error-Handling
Variants§
Trait Implementations§
Source§impl Clone for BinaryError
impl Clone for BinaryError
Source§fn clone(&self) -> BinaryError
fn clone(&self) -> BinaryError
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 BinaryError
impl Debug for BinaryError
Source§impl Hash for BinaryError
impl Hash for BinaryError
Source§impl PartialEq for BinaryError
impl PartialEq for BinaryError
Source§impl PartialOrd for BinaryError
impl PartialOrd for BinaryError
impl Copy for BinaryError
impl StructuralPartialEq for BinaryError
Auto Trait Implementations§
impl Freeze for BinaryError
impl RefUnwindSafe for BinaryError
impl Send for BinaryError
impl Sync for BinaryError
impl Unpin for BinaryError
impl UnwindSafe for BinaryError
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