#[non_exhaustive]pub enum MaxLenError {
Overflow,
Underflow,
}Expand description
A max-len prefix was constructed from illegal components.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Overflow
The max-len is larger than allowed for the address family.
Underflow
The max-len is smaller than the prefix length.
Implementations§
Source§impl MaxLenError
impl MaxLenError
Sourcepub fn static_description(self) -> &'static str
pub fn static_description(self) -> &'static str
Returns a static error message.
Trait Implementations§
Source§impl Clone for MaxLenError
impl Clone for MaxLenError
Source§fn clone(&self) -> MaxLenError
fn clone(&self) -> MaxLenError
Returns a duplicate 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 MaxLenError
impl Debug for MaxLenError
Source§impl Display for MaxLenError
impl Display for MaxLenError
Source§impl Error for MaxLenError
impl Error for MaxLenError
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()
Source§impl From<MaxLenError> for &'static str
impl From<MaxLenError> for &'static str
Source§fn from(err: MaxLenError) -> Self
fn from(err: MaxLenError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MaxLenError
impl PartialEq for MaxLenError
impl Eq for MaxLenError
impl StructuralPartialEq for MaxLenError
Auto Trait Implementations§
impl Freeze for MaxLenError
impl RefUnwindSafe for MaxLenError
impl Send for MaxLenError
impl Sync for MaxLenError
impl Unpin for MaxLenError
impl UnwindSafe for MaxLenError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Text for Twhere
T: Display,
impl<T> Text for Twhere
T: Display,
Source§fn write_escaped(
&self,
mode: TextEscape,
target: &mut impl Write,
) -> Result<(), Error>
fn write_escaped( &self, mode: TextEscape, target: &mut impl Write, ) -> Result<(), Error>
Write text escaped for the given mode to
target.