pub trait SetIORoutes {
    // Required method
    fn set_io_routes_from_parent(&mut self, parent: &Route, io_type: IOType);
}
Expand description

structs with IOs will be able to have the IOs routes set by using parent route

Required Methods§

source

fn set_io_routes_from_parent(&mut self, parent: &Route, io_type: IOType)

Set the route and IO type of IOs in this struct based on parent’s route

Implementors§