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