Trait flowcore::model::io::Find

source ·
pub trait Find {
    // Required method
    fn find_by_subroute(&mut self, subroute: &Route) -> Result<IO>;
}
Expand description

Find trait is implemented by a number of object types to help find a sub-object using it’s Name or Route

Required Methods§

source

fn find_by_subroute(&mut self, subroute: &Route) -> Result<IO>

Find IO using it’s sub-Route

Implementors§