pub enum NetworkListFilter {
Name(String),
Id(Id),
Driver(String),
LabelKey(String),
LabelKeyVal(String, String),
NoLabelKey(String),
NoLabelKeyVal(String, String),
Until(String),
}Expand description
Used to filter listed network configurations by one of the variants.
Variants§
Name(String)
Matches network name (accepts regex).
Id(Id)
Matches for full or partial ID.
Driver(String)
Only bridge is supported.
LabelKey(String)
Matches networks with key label.
LabelKeyVal(String, String)
Matches networks with key=value label.
NoLabelKey(String)
Matches networks without key label.
NoLabelKeyVal(String, String)
Matches networks without key=value label.
Until(String)
Matches all networks that were create before the given timestamp.
Trait Implementations§
Source§impl Debug for NetworkListFilter
impl Debug for NetworkListFilter
Source§impl Filter for NetworkListFilter
impl Filter for NetworkListFilter
fn query_item(&self) -> FilterItem
Auto Trait Implementations§
impl Freeze for NetworkListFilter
impl RefUnwindSafe for NetworkListFilter
impl Send for NetworkListFilter
impl Sync for NetworkListFilter
impl Unpin for NetworkListFilter
impl UnwindSafe for NetworkListFilter
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more