InspectorRouteTableExt

Trait InspectorRouteTableExt 

Source
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§

Source

fn record_route_table<I: Inspector>(inspector: &mut I, name: &str, table: &R)

Records an entry named name with value table.

Source

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", so this trait is not object safe.

Implementors§