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
impl Eq for EscapeIntoError
impl StructuralPartialEq for EscapeIntoError
Auto Trait Implementations§
impl Freeze for EscapeIntoError
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