pub struct VolumeLsOutput {
pub volumes: Vec<VolumeInfo>,
pub raw_output: CommandOutput,
}
Expand description
Output from volume ls
Fields§
§volumes: Vec<VolumeInfo>
List of volumes
raw_output: CommandOutput
Raw command output
Trait Implementations§
Source§impl Clone for VolumeLsOutput
impl Clone for VolumeLsOutput
Source§fn clone(&self) -> VolumeLsOutput
fn clone(&self) -> VolumeLsOutput
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 VolumeLsOutput
impl Debug for VolumeLsOutput
Source§impl From<CommandOutput> for VolumeLsOutput
impl From<CommandOutput> for VolumeLsOutput
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 VolumeLsOutput
impl RefUnwindSafe for VolumeLsOutput
impl Send for VolumeLsOutput
impl Sync for VolumeLsOutput
impl Unpin for VolumeLsOutput
impl UnwindSafe for VolumeLsOutput
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