Enum etherparse::icmpv6::TimeExceededCode
source · pub enum TimeExceededCode {
HopLimitExceeded = 0,
FragmentReassemblyTimeExceeded = 1,
}Expand description
Code values for ICMPv6 time exceeded message.
Variants§
HopLimitExceeded = 0
“hop limit exceeded in transit”
FragmentReassemblyTimeExceeded = 1
“fragment reassembly time exceeded”
Implementations§
Trait Implementations§
source§impl Clone for TimeExceededCode
impl Clone for TimeExceededCode
source§fn clone(&self) -> TimeExceededCode
fn clone(&self) -> TimeExceededCode
Returns a copy 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 TimeExceededCode
impl Debug for TimeExceededCode
source§impl PartialEq for TimeExceededCode
impl PartialEq for TimeExceededCode
source§fn eq(&self, other: &TimeExceededCode) -> bool
fn eq(&self, other: &TimeExceededCode) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for TimeExceededCode
impl Eq for TimeExceededCode
impl StructuralPartialEq for TimeExceededCode
Auto Trait Implementations§
impl RefUnwindSafe for TimeExceededCode
impl Send for TimeExceededCode
impl Sync for TimeExceededCode
impl Unpin for TimeExceededCode
impl UnwindSafe for TimeExceededCode
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