pub enum ParseByteError {
    InvalidFormat,
    InvalidEscape,
}Variants§
InvalidFormat
Input wasn’t of the form b'X'
InvalidEscape
Escape-sequence wasn’t one of our supported set
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParseByteError
impl RefUnwindSafe for ParseByteError
impl Send for ParseByteError
impl Sync for ParseByteError
impl Unpin for ParseByteError
impl UnwindSafe for ParseByteError
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