IntoP4Selection

Trait IntoP4Selection 

Source
pub trait IntoP4Selection {
    // Required method
    fn into_selection(self) -> P4Selection;
}
Expand description

Helper trait to convert common particle specifications into P4Selection instances.

Required Methods§

Source

fn into_selection(self) -> P4Selection

Convert the input into a P4Selection.

Implementations on Foreign Types§

Source§

impl IntoP4Selection for &str

Source§

impl IntoP4Selection for &String

Source§

impl IntoP4Selection for String

Source§

impl<S> IntoP4Selection for &[S]
where S: Clone + Into<String>,

Source§

impl<S> IntoP4Selection for Vec<S>
where S: Into<String>,

Source§

impl<S, const N: usize> IntoP4Selection for &[S; N]
where S: Clone + Into<String>,

Source§

impl<S, const N: usize> IntoP4Selection for [S; N]
where S: Into<String>,

Implementors§