pub trait Named { // Required methods fn name(&self) -> Option<String>; fn set_name(&self, name: &str) -> Result<()>; }
Mirrors the corresponding Model I/O named protocol counterpart.