pub trait INamedPort: IClientObject {
    fn get_name() -> &'static str;
    fn post_initialize(&mut self) -> Result<()>;
}

Required Methods

Implementors