pub enum AllOptParseError {
Nsid(<Nsid as OptData>::ParseErr),
Dau(<Dau as OptData>::ParseErr),
Dhu(<Dhu as OptData>::ParseErr),
N3u(<N3u as OptData>::ParseErr),
Expire(<Expire as OptData>::ParseErr),
TcpKeepalive(<TcpKeepalive as OptData>::ParseErr),
Padding(<Padding as OptData>::ParseErr),
ClientSubnet(<ClientSubnet as OptData>::ParseErr),
Cookie(<Cookie as OptData>::ParseErr),
Chain(<Chain as OptData>::ParseErr),
KeyTag(<KeyTag as OptData>::ParseErr),
ShortBuf,
}
Variants§
Nsid(<Nsid as OptData>::ParseErr)
Dau(<Dau as OptData>::ParseErr)
Dhu(<Dhu as OptData>::ParseErr)
N3u(<N3u as OptData>::ParseErr)
Expire(<Expire as OptData>::ParseErr)
TcpKeepalive(<TcpKeepalive as OptData>::ParseErr)
Padding(<Padding as OptData>::ParseErr)
ClientSubnet(<ClientSubnet as OptData>::ParseErr)
Cookie(<Cookie as OptData>::ParseErr)
Chain(<Chain as OptData>::ParseErr)
KeyTag(<KeyTag as OptData>::ParseErr)
ShortBuf
Trait Implementations§
Source§impl Clone for AllOptParseError
impl Clone for AllOptParseError
Source§fn clone(&self) -> AllOptParseError
fn clone(&self) -> AllOptParseError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AllOptParseError
impl Debug for AllOptParseError
Source§impl Display for AllOptParseError
impl Display for AllOptParseError
Source§impl Fail for AllOptParseError
impl Fail for AllOptParseError
Source§fn cause(&self) -> Option<&dyn Fail>
fn cause(&self) -> Option<&dyn Fail>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
Source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace
carried by this failure, if it
carries one. Read moreSource§impl From<ShortBuf> for AllOptParseError
impl From<ShortBuf> for AllOptParseError
Source§impl PartialEq for AllOptParseError
impl PartialEq for AllOptParseError
impl Eq for AllOptParseError
impl StructuralPartialEq for AllOptParseError
Auto Trait Implementations§
impl Freeze for AllOptParseError
impl RefUnwindSafe for AllOptParseError
impl Send for AllOptParseError
impl Sync for AllOptParseError
impl Unpin for AllOptParseError
impl UnwindSafe for AllOptParseError
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