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

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

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

Required methods

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

Loading content...

Implementors

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

Loading content...