pub enum UnescapeIntoError {
OutOfBounds,
Unescape(UnescapeError),
}
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.
Unescape(UnescapeError)
Occurs when encountering unexpected byte sequences.
Trait Implementations§
Source§impl Debug for UnescapeIntoError
impl Debug for UnescapeIntoError
Source§impl PartialEq for UnescapeIntoError
impl PartialEq for UnescapeIntoError
impl Eq for UnescapeIntoError
impl StructuralPartialEq for UnescapeIntoError
Auto Trait Implementations§
impl Freeze for UnescapeIntoError
impl RefUnwindSafe for UnescapeIntoError
impl Send for UnescapeIntoError
impl Sync for UnescapeIntoError
impl Unpin for UnescapeIntoError
impl UnwindSafe for UnescapeIntoError
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