pub struct ContainerTopOKBody {
pub processes: Vec<Vec<String>>,
pub titles: Vec<String>,
}
Expand description
ContainerTopOKBody OK response to ContainerTop operation.
Fields§
§processes: Vec<Vec<String>>
Each process running in the container, where each is process is an array of values
corresponding to the titles.
titles: Vec<String>
The ps column titles.
Trait Implementations§
Source§impl Clone for ContainerTopOKBody
impl Clone for ContainerTopOKBody
Source§fn clone(&self) -> ContainerTopOKBody
fn clone(&self) -> ContainerTopOKBody
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ContainerTopOKBody
impl Debug for ContainerTopOKBody
Source§impl<'de> Deserialize<'de> for ContainerTopOKBody
impl<'de> Deserialize<'de> for ContainerTopOKBody
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ContainerTopOKBody
impl RefUnwindSafe for ContainerTopOKBody
impl Send for ContainerTopOKBody
impl Sync for ContainerTopOKBody
impl Unpin for ContainerTopOKBody
impl UnwindSafe for ContainerTopOKBody
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