pub trait Character: Named + Tagged + AsAny + Description + Dumpable + Debug {
    fn scene(&self) -> &Option<String>;
    fn set_scene(&mut self, scene: Option<String>);
}

Required Methods

Implementors