Skip to main content

UnderlayDiscovery

Trait UnderlayDiscovery 

Source
pub trait UnderlayDiscovery: Send + Sync {
    // Required methods
    fn list_snap_underlays(&self) -> Vec<SnapUnderlay>;
    fn list_udp_underlays(&self) -> Vec<UdpUnderlay>;
}
Expand description

List the available data planes.

Required Methods§

Source

fn list_snap_underlays(&self) -> Vec<SnapUnderlay>

List all SNAP data planes.

Source

fn list_udp_underlays(&self) -> Vec<UdpUnderlay>

List all UDP data planes.

Implementors§