DataPlaneDiscovery

Trait DataPlaneDiscovery 

Source
pub trait DataPlaneDiscovery: Send + Sync {
    // Required methods
    fn list_snap_data_planes(&self) -> Vec<SnapDataPlane>;
    fn list_udp_data_planes(&self) -> Vec<UdpDataPlane>;
}
Expand description

List the available data planes.

Required Methods§

Source

fn list_snap_data_planes(&self) -> Vec<SnapDataPlane>

List all SNAP data planes.

Source

fn list_udp_data_planes(&self) -> Vec<UdpDataPlane>

List all UDP data planes.

Implementors§