[][src]Struct internet2::transport::RoutedFrame

pub struct RoutedFrame {
    pub hop: Vec<u8>,
    pub src: Vec<u8>,
    pub dst: Vec<u8>,
    pub msg: Vec<u8>,
}

Fields

hop: Vec<u8>

Previous hop where we received message from during the routing

src: Vec<u8>

Originator of the message

dst: Vec<u8>

Destination of the message

msg: Vec<u8>

Message itself

Trait Implementations

impl Clone for RoutedFrame[src]

impl Debug for RoutedFrame[src]

impl Eq for RoutedFrame[src]

impl Hash for RoutedFrame[src]

impl PartialEq<RoutedFrame> for RoutedFrame[src]

impl StructuralEq for RoutedFrame[src]

impl StructuralPartialEq for RoutedFrame[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,