[][src]Struct async_coap::message::NullMessageWrite

pub struct NullMessageWrite;

Null message writer. Anything written to this instance will be ignored.

Trait Implementations

impl MessageWrite for NullMessageWrite[src]

fn append_payload_string(&mut self, body: &str) -> Result<(), Error>[src]

Appends bytes from the UTF8 representation of the given string slice body to the payload of the message. This method should only be called after the token and all options have been set. This method may be called multiple times, each time appending data to the payload. Read more

fn append_payload_u8(&mut self, b: u8) -> Result<(), Error>[src]

Appends a single byte to the payload of the message. This method should only be called after the token and all options have been set. This method may be called multiple times, each time appending data to the payload. Read more

fn append_payload_char(&mut self, c: char) -> Result<(), Error>[src]

Appends the UTF8 representation for a single unicode character to the payload of the message. This method should only be called after the token and all options have been set. This method may be called multiple times, each time appending data to the payload. Read more

impl OptionInsert for NullMessageWrite[src]

fn insert_option_empty(&mut self, key: OptionNumber) -> Result<(), Error>[src]

Inserts an option into the message with no value. Calling this method with out-of-order keys will incur a significant performance penalty. Read more

fn insert_option_with_str(
    &mut self,
    key: OptionNumber,
    value: &str
) -> Result<(), Error>
[src]

Inserts an option into the message with a string value. Calling this method with out-of-order keys will incur a significant performance penalty. Read more

fn insert_option_with_u32(
    &mut self,
    key: OptionNumber,
    value: u32
) -> Result<(), Error>
[src]

Inserts an option into the message with an integer value. Calling this method with out-of-order keys will incur a significant performance penalty. Read more

impl Debug for NullMessageWrite[src]

Auto Trait Implementations

Blanket Implementations

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

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

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<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]

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