pub trait Title<State> {
// Required method
fn title(&self, state: &State, window: Id) -> String;
}
Expand description
The title logic of some Daemon
.
This trait is implemented both for &static str
and
any closure Fn(&State, window::Id) -> String
.
This trait allows the daemon
builder to take any of them.
Produces the title of the Daemon
.