pub struct StackMember {
pub container_id: String,
pub container_name: String,
pub uptime: Option<String>,
}Expand description
One running compose-stack member surfaced in the stack-restart confirm dialog. Carried so the confirm body can list every container that will be cycled, identity-and-state-clear.
Fields§
§container_id: String§container_name: String§uptime: Option<String>Trait Implementations§
Source§impl Clone for StackMember
impl Clone for StackMember
Source§fn clone(&self) -> StackMember
fn clone(&self) -> StackMember
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 moreSource§impl Debug for StackMember
impl Debug for StackMember
Source§impl PartialEq for StackMember
impl PartialEq for StackMember
Source§fn eq(&self, other: &StackMember) -> bool
fn eq(&self, other: &StackMember) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StackMember
Auto Trait Implementations§
impl Freeze for StackMember
impl RefUnwindSafe for StackMember
impl Send for StackMember
impl Sync for StackMember
impl Unpin for StackMember
impl UnsafeUnpin for StackMember
impl UnwindSafe for StackMember
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more