pub struct ManagedContainer {
pub id: ContainerId,
pub resource: String,
pub status: ContainerStatus,
}Expand description
One entry returned by DockerRuntime::list_managed.
Fields§
§id: ContainerIdContainer identifier.
resource: StringResource name as declared in the manifest.
status: ContainerStatusCurrent lifecycle status.
Trait Implementations§
Source§impl Clone for ManagedContainer
impl Clone for ManagedContainer
Source§fn clone(&self) -> ManagedContainer
fn clone(&self) -> ManagedContainer
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 ManagedContainer
impl RefUnwindSafe for ManagedContainer
impl Send for ManagedContainer
impl Sync for ManagedContainer
impl Unpin for ManagedContainer
impl UnsafeUnpin for ManagedContainer
impl UnwindSafe for ManagedContainer
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