pub enum ByteType {
None,
Ascii(u8),
One(u8),
Two(u8),
Three(u8),
FourOrMore(u8),
Continuation(u8),
}Variants§
Implementations§
Trait Implementations§
impl Copy for ByteType
impl Eq for ByteType
impl StructuralPartialEq for ByteType
Auto Trait Implementations§
impl Freeze for ByteType
impl RefUnwindSafe for ByteType
impl Send for ByteType
impl Sync for ByteType
impl Unpin for ByteType
impl UnwindSafe for ByteType
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