pub enum AppleTalkError {
InvalidSize {
expected: usize,
found: usize,
},
ExceededMax,
LinkHeaderError(EtherTalkError),
DdpError(DdpError),
AarpError(AarpError),
AepError(AepError),
AtpError(AtpError),
}Variants§
InvalidSize
ExceededMax
LinkHeaderError(EtherTalkError)
DdpError(DdpError)
AarpError(AarpError)
AepError(AepError)
AtpError(AtpError)
Trait Implementations§
Source§impl Debug for AppleTalkError
impl Debug for AppleTalkError
Source§impl Display for AppleTalkError
impl Display for AppleTalkError
Source§impl Error for AppleTalkError
impl Error for AppleTalkError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for AppleTalkError
impl !RefUnwindSafe for AppleTalkError
impl Send for AppleTalkError
impl Sync for AppleTalkError
impl Unpin for AppleTalkError
impl UnsafeUnpin for AppleTalkError
impl !UnwindSafe for AppleTalkError
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