pub trait Head {
    fn title(&mut self, title: &str);
}
Expand description

The type-safe interface for the <head> tag.

Required Methods

Add a <title> to the head.

Implementors