pub enum MldError {
MaxRespCodeOverflow,
MaxRespCodeLossyConversion,
}
Expand description
MLD Errors.
Variants§
MaxRespCodeOverflow
Raised when MaxRespCode
cannot fit in u16
.
MaxRespCodeLossyConversion
Raised when a duration cannot be exactly expressed with a MaxRespCode. This can happen when the exponential mapping from MLDv2 is used. For an example see RFC 3810 section 5.1. This error is not used for MLDv1.
Trait Implementations§
impl StructuralPartialEq for MldError
Auto Trait Implementations§
impl Freeze for MldError
impl RefUnwindSafe for MldError
impl Send for MldError
impl Sync for MldError
impl Unpin for MldError
impl UnwindSafe for MldError
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