Trait coap_handler::implementations::SimpleRenderable[][src]

pub trait SimpleRenderable {
    fn render<W>(&mut self, writer: &mut W)
    where
        W: Write
; fn content_format(&self) -> Option<u16> { ... } }

A simplified Handler trait that can react to GET requests and will render to a fmt::Write object with blockwise backing.

Anything that implements it (which includes plain &str, for example) can be packed into a SimpleRendered to form a Handler.

Required methods

fn render<W>(&mut self, writer: &mut W) where
    W: Write
[src]

Loading content...

Provided methods

fn content_format(&self) -> Option<u16>[src]

If something is returned, GETs with differing Accept options will be rejecected, and the value will be set in responses.

Loading content...

Implementors

impl<'a> SimpleRenderable for &'a str[src]

Loading content...