pub struct InspectData {
pub container_name: String,
pub status: String,
pub restart_policy: String,
pub health: String,
pub uptime: String,
pub ports: String,
}Expand description
Shape of inspected data
Fields§
§container_name: String§status: String§restart_policy: String§health: String§uptime: String§ports: StringTrait Implementations§
Source§impl Clone for InspectData
impl Clone for InspectData
Source§fn clone(&self) -> InspectData
fn clone(&self) -> InspectData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for InspectData
impl RefUnwindSafe for InspectData
impl Send for InspectData
impl Sync for InspectData
impl Unpin for InspectData
impl UnsafeUnpin for InspectData
impl UnwindSafe for InspectData
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