pub trait ToString {
// Required method
fn to_string(&self) -> String;
}Available on crate feature
wayland and Linux only.Expand description
Required Methods§
Implementors§
impl ToString for PanelType
Available on crate feature
applet only.impl ToString for Binding
impl<T> ToString for T
§Panics
In this implementation, the to_string method panics
if the Display implementation returns an error.
This indicates an incorrect Display implementation
since fmt::Write for String never returns an error itself.