[][src]Struct over_there_core::Msg

pub struct Msg {
    pub header: Header,
    pub parent_header: Option<Header>,
    pub content: Content,
}

Fields

header: Header

Information associated with this message

parent_header: Option<Header>

Information associated with the parent of this message to provide origin context

content: Content

Content within the message

Methods

impl Msg[src]

pub fn to_vec(&self) -> Result<Vec<u8>, MsgError>[src]

pub fn from_slice(slice: &[u8]) -> Result<Self, MsgError>[src]

Trait Implementations

impl Clone for Msg[src]

impl Debug for Msg[src]

impl<'de> Deserialize<'de> for Msg[src]

impl Eq for Msg[src]

impl From<(Content, Header)> for Msg[src]

Produce a new message from the content with existing header being the parent

impl From<(Content, Msg)> for Msg[src]

Produce a new message from the content with existing message being the parent

impl From<Content> for Msg[src]

Produce a new message from the content with no parent

impl PartialEq<Msg> for Msg[src]

impl Serialize for Msg[src]

impl StructuralEq for Msg[src]

impl StructuralPartialEq for Msg[src]

Auto Trait Implementations

impl RefUnwindSafe for Msg

impl Send for Msg

impl Sync for Msg

impl Unpin for Msg

impl UnwindSafe for Msg

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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>,