pub struct ContainerTopLibpod<'a> {
    pub stream: Option<bool>,
    pub delay: Option<i64>,
    pub ps_args: Option<Vec<&'a str>>,
}Available on crate feature 
v4 only.Fields§
§stream: Option<bool>when true, repeatedly stream the latest output (As of version 4.0)
delay: Option<i64>if streaming, delay in seconds between updates. Must be >1. (As of version 4.0)
ps_args: Option<Vec<&'a str>>arguments to pass to ps such as aux.
Trait Implementations§
Source§impl<'a> Debug for ContainerTopLibpod<'a>
 
impl<'a> Debug for ContainerTopLibpod<'a>
Source§impl<'a> Default for ContainerTopLibpod<'a>
 
impl<'a> Default for ContainerTopLibpod<'a>
Source§fn default() -> ContainerTopLibpod<'a>
 
fn default() -> ContainerTopLibpod<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for ContainerTopLibpod<'a>
impl<'a> RefUnwindSafe for ContainerTopLibpod<'a>
impl<'a> Send for ContainerTopLibpod<'a>
impl<'a> Sync for ContainerTopLibpod<'a>
impl<'a> Unpin for ContainerTopLibpod<'a>
impl<'a> UnwindSafe for ContainerTopLibpod<'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