Trait Scribe
Source pub trait Scribe {
// Required method
fn render(self, res: &mut Response);
}
Expand description
Scribe is used to write data to Response.
Scribe is simpler than Writer and it implements Writer. It does not require the use of Depot and Request.
There are several built-in implementations of the Scribe trait.