Trait StateKind

Source
pub trait StateKind: RawStateKind {
    // Required method
    fn kind(&self) -> &str;
}
Expand description

note: this trait is auto implemented for types that implement AsRef<str>.

Required Methods§

Source

fn kind(&self) -> &str

Implementors§

Source§

impl<T> StateKind for T
where T: RawStateKind + AsRef<str>,