pub struct NetworkListLibpod<'a> {
pub filters: Option<&'a str>,
}
Available on crate feature
v5
only.Fields§
§filters: Option<&'a str>
JSON encoded value of the filters (a map[string][]string
) to process on the network list. Available filters:
name=[name]
Matches network name (accepts regex).id=[id]
Matches for full or partial ID.driver=[driver]
Only bridge is supported.label=[key]
orlabel=[key=value]
Matches networks based on the presence of a label alone or a label and a value.until=[timestamp]
Matches all networks that were created before the given timestamp.
Trait Implementations§
Source§impl<'a> Debug for NetworkListLibpod<'a>
impl<'a> Debug for NetworkListLibpod<'a>
Source§impl<'a> Default for NetworkListLibpod<'a>
impl<'a> Default for NetworkListLibpod<'a>
Source§fn default() -> NetworkListLibpod<'a>
fn default() -> NetworkListLibpod<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for NetworkListLibpod<'a>
impl<'a> RefUnwindSafe for NetworkListLibpod<'a>
impl<'a> Send for NetworkListLibpod<'a>
impl<'a> Sync for NetworkListLibpod<'a>
impl<'a> Unpin for NetworkListLibpod<'a>
impl<'a> UnwindSafe for NetworkListLibpod<'a>
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