pub enum NameError {
Label(LabelError),
PointerCycle,
TooLong,
}
Expand description
failed to view name
Variants§
Label(LabelError)
name has malformed label
PointerCycle
message compression pointer forms cycle
TooLong
name is longer than 255 octets excluding null label (RFC 2181 § 11)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NameError
impl RefUnwindSafe for NameError
impl Send for NameError
impl Sync for NameError
impl Unpin for NameError
impl UnwindSafe for NameError
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