pub struct Packet {
    pub header: Header,
    pub payload: Vec<u8>,
    /* private fields */
}
Expand description

The CoAP packet.

Fields

header: Headerpayload: Vec<u8>

Implementations

Creates a new packet.

Returns an iterator over the options of the packet.

Sets the token.

Returns the token.

Sets an option’s values.

Sets an option’s values using a structured option value format.

Returns an option’s values.

Returns an option’s values all decoded using the specified structured option value format.

Returns an option’s first value as a convenience when only one is expected.

Returns an option’s first value as a convenience when only one is expected.

Adds an option value.

Adds an option value using a structured option value format.

Removes an option.

Sets the content-format.

Returns the content-format.

Sets the value of the observe option.

Returns the value of the observe option.

Decodes a byte slice and constructs the equivalent packet.

Returns a vector of bytes representing the Packet.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.