pub struct PackStatusResult {
pub message: Option<String>,
pub dry_run: bool,
pub packs: Vec<DisplayPack>,
pub warnings: Vec<String>,
}Expand description
Result type for commands that display pack status (status, up, down).
Fields§
§message: Option<String>§dry_run: bool§packs: Vec<DisplayPack>§warnings: Vec<String>Trait Implementations§
Source§impl Clone for PackStatusResult
impl Clone for PackStatusResult
Source§fn clone(&self) -> PackStatusResult
fn clone(&self) -> PackStatusResult
Returns a duplicate 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 PackStatusResult
impl Debug for PackStatusResult
Auto Trait Implementations§
impl Freeze for PackStatusResult
impl RefUnwindSafe for PackStatusResult
impl Send for PackStatusResult
impl Sync for PackStatusResult
impl Unpin for PackStatusResult
impl UnsafeUnpin for PackStatusResult
impl UnwindSafe for PackStatusResult
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