Enum smoltcp::wire::Icmpv6ParamProblem
source · [−]pub enum Icmpv6ParamProblem {
ErroneousHdrField,
UnrecognizedNxtHdr,
UnrecognizedOption,
Unknown(u8),
}Expand description
Internet protocol control message subtype for the type “Parameter Problem”.
Variants
ErroneousHdrField
Erroneous header field encountered.
UnrecognizedNxtHdr
Unrecognized Next Header type encountered.
UnrecognizedOption
Unrecognized IPv6 option encountered.
Unknown(u8)
Trait Implementations
sourceimpl Clone for ParamProblem
impl Clone for ParamProblem
sourcefn clone(&self) -> ParamProblem
fn clone(&self) -> ParamProblem
Returns a copy of the value. Read more
1.0.0fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ParamProblem
impl Debug for ParamProblem
sourceimpl Display for ParamProblem
impl Display for ParamProblem
sourceimpl From<ParamProblem> for u8
impl From<ParamProblem> for u8
sourcefn from(value: ParamProblem) -> Self
fn from(value: ParamProblem) -> Self
Converts to this type from the input type.
sourceimpl From<u8> for ParamProblem
impl From<u8> for ParamProblem
sourceimpl Ord for ParamProblem
impl Ord for ParamProblem
sourcefn cmp(&self, other: &ParamProblem) -> Ordering
fn cmp(&self, other: &ParamProblem) -> Ordering
This method returns an [Ordering] between self and other. Read more
sourceimpl PartialEq<ParamProblem> for ParamProblem
impl PartialEq<ParamProblem> for ParamProblem
sourcefn eq(&self, other: &ParamProblem) -> bool
fn eq(&self, other: &ParamProblem) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ParamProblem) -> bool
fn ne(&self, other: &ParamProblem) -> bool
This method tests for !=.
sourceimpl PartialOrd<ParamProblem> for ParamProblem
impl PartialOrd<ParamProblem> for ParamProblem
sourcefn partial_cmp(&self, other: &ParamProblem) -> Option<Ordering>
fn partial_cmp(&self, other: &ParamProblem) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0fn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Copy for ParamProblem
impl Eq for ParamProblem
impl StructuralEq for ParamProblem
impl StructuralPartialEq for ParamProblem
Auto Trait Implementations
impl RefUnwindSafe for ParamProblem
impl Send for ParamProblem
impl Sync for ParamProblem
impl Unpin for ParamProblem
impl UnwindSafe for ParamProblem
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more