pub trait InspectorRouteTableExt<R> {
// Required methods
fn record_route_table<I: Inspector>(
inspector: &mut I,
name: &str,
table: &R,
);
fn display_route_table(table: &R) -> impl Display;
}Expand description
An extension to Inspector that allows recoding route table IDs.
Required Methods§
Sourcefn record_route_table<I: Inspector>(inspector: &mut I, name: &str, table: &R)
fn record_route_table<I: Inspector>(inspector: &mut I, name: &str, table: &R)
Records an entry named name with value table.
Sourcefn display_route_table(table: &R) -> impl Display
fn display_route_table(table: &R) -> impl Display
Returns the Display representation of table.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".