[][src]Struct simple_message_channels::Message

pub struct Message {
    pub channel: u64,
    pub typ: u8,
    pub message: Vec<u8>,
}

A SMC message.

Fields

channel: u64typ: u8message: Vec<u8>

Methods

impl Message[src]

pub fn new(channel: u64, typ: u8, message: Vec<u8>) -> Message[src]

Create a new message.

pub fn from_buf(buf: &[u8]) -> Result<Message, Error>[src]

Decode a message from buf (bytes).

Note: buf has to have a valid length, and the length prefix has to be removed already.

pub fn encode(&self) -> Vec<u8>[src]

Encode a message body into a buffer.

The result can be sent directly over any medium. It is length-prefixed, so chunking should not be an issue.

Trait Implementations

impl Debug for Message[src]

Auto Trait Implementations

impl Send for Message

impl Sync for Message

impl Unpin for Message

impl UnwindSafe for Message

impl RefUnwindSafe for Message

Blanket Implementations

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

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

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

type Error = !

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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