Enum escape_bytes::EscapeIntoError
source · pub enum EscapeIntoError {
OutOfBounds,
}Expand description
Escape into error occurs when escaping into a slice cannot continue.
Variants§
OutOfBounds
Writing into the slice would write to a position that is out-of-bounds.
Trait Implementations§
source§impl Debug for EscapeIntoError
impl Debug for EscapeIntoError
source§impl PartialEq for EscapeIntoError
impl PartialEq for EscapeIntoError
source§fn eq(&self, other: &EscapeIntoError) -> bool
fn eq(&self, other: &EscapeIntoError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for EscapeIntoError
impl StructuralEq for EscapeIntoError
impl StructuralPartialEq for EscapeIntoError
Auto Trait Implementations§
impl RefUnwindSafe for EscapeIntoError
impl Send for EscapeIntoError
impl Sync for EscapeIntoError
impl Unpin for EscapeIntoError
impl UnwindSafe for EscapeIntoError
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