pub enum ParsingError {
Incomplete,
WouldOverflow,
Other,
}
Variants§
Trait Implementations§
Source§impl Debug for ParsingError
impl Debug for ParsingError
Source§impl<C> From<ParsingError> for SocksError<C>
impl<C> From<ParsingError> for SocksError<C>
Source§fn from(err: ParsingError) -> Self
fn from(err: ParsingError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParsingError
impl RefUnwindSafe for ParsingError
impl Send for ParsingError
impl Sync for ParsingError
impl Unpin for ParsingError
impl UnwindSafe for ParsingError
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