pub struct PodTopLibpod<'a> {
    pub stream: Option<bool>,
    pub delay: Option<i64>,
    pub ps_args: Option<&'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<&'a str>arguments to pass to ps such as aux.
Trait Implementations§
Source§impl<'a> Debug for PodTopLibpod<'a>
 
impl<'a> Debug for PodTopLibpod<'a>
Source§impl<'a> Default for PodTopLibpod<'a>
 
impl<'a> Default for PodTopLibpod<'a>
Source§fn default() -> PodTopLibpod<'a>
 
fn default() -> PodTopLibpod<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for PodTopLibpod<'a>
impl<'a> RefUnwindSafe for PodTopLibpod<'a>
impl<'a> Send for PodTopLibpod<'a>
impl<'a> Sync for PodTopLibpod<'a>
impl<'a> Unpin for PodTopLibpod<'a>
impl<'a> UnwindSafe for PodTopLibpod<'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