pub enum FrameMetadata {
NeighborSolicitation(IpAddress),
Udp(IpAddress),
Other,
}
Expand description
Frame metadata of interest to neighbor tests.
Variants§
NeighborSolicitation(IpAddress)
An ARP request or NDP Neighbor Solicitation target address.
Udp(IpAddress)
A UDP datagram destined to the address.
Other
Any other successfully parsed frame.
Trait Implementations§
Source§impl Debug for FrameMetadata
impl Debug for FrameMetadata
Source§impl PartialEq for FrameMetadata
impl PartialEq for FrameMetadata
impl Eq for FrameMetadata
impl StructuralPartialEq for FrameMetadata
Auto Trait Implementations§
impl Freeze for FrameMetadata
impl RefUnwindSafe for FrameMetadata
impl Send for FrameMetadata
impl Sync for FrameMetadata
impl Unpin for FrameMetadata
impl UnwindSafe for FrameMetadata
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
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> IntoAny for T
impl<T> IntoAny for T
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T, U> TryIntoExt<U> for Twhere
U: TryFromExt<T>,
impl<T, U> TryIntoExt<U> for Twhere
U: TryFromExt<T>,
type Error = <U as TryFromExt<T>>::Error
§fn try_into_ext(self) -> Result<U, <T as TryIntoExt<U>>::Error>
fn try_into_ext(self) -> Result<U, <T as TryIntoExt<U>>::Error>
Tries to perform the conversion.