[][src]Struct jnet::coap::Code

pub struct Code(_);

CoAP Code

Methods

impl Code[src]

pub const EMPTY: Self[src]

Empty message

pub fn class(&self) -> u8[src]

Returns the class of this code

pub fn detail(&self) -> u8[src]

Returns the detail of this code

pub fn is_request(&self) -> bool[src]

Checks if this is a request code

pub fn is_response(&self) -> bool[src]

Checks if this is a reponse code

Trait Implementations

impl From<Method> for Code[src]

impl From<Response> for Code[src]

impl PartialEq<Code> for Code[src]

impl Debug for Code[src]

impl Display for Code[src]

impl Copy for Code[src]

impl Clone for Code[src]

Auto Trait Implementations

impl Unpin for Code

impl Send for Code

impl Sync for Code

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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<T> Same<T> for T[src]

type Output = T

Should always be Self