pub struct VolumeInspectOutput {
pub json: Option<Value>,
pub raw_output: CommandOutput,
}
Expand description
Output from volume inspect
Fields§
§json: Option<Value>
Parsed JSON output
raw_output: CommandOutput
Raw command output
Trait Implementations§
Source§impl Clone for VolumeInspectOutput
impl Clone for VolumeInspectOutput
Source§fn clone(&self) -> VolumeInspectOutput
fn clone(&self) -> VolumeInspectOutput
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 VolumeInspectOutput
impl Debug for VolumeInspectOutput
Source§impl From<CommandOutput> for VolumeInspectOutput
impl From<CommandOutput> for VolumeInspectOutput
Source§fn from(output: CommandOutput) -> Self
fn from(output: CommandOutput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VolumeInspectOutput
impl RefUnwindSafe for VolumeInspectOutput
impl Send for VolumeInspectOutput
impl Sync for VolumeInspectOutput
impl Unpin for VolumeInspectOutput
impl UnwindSafe for VolumeInspectOutput
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