pub struct SubvolumeShowCommand {
pub rootid: Option<u64>,
pub uuid: Option<ParsedUuid>,
pub units: UnitMode,
pub path: PathBuf,
}Expand description
Show detailed information about a subvolume
Displays UUIDs, generation numbers, creation time, flags, and send/receive transaction IDs for the subvolume that contains the given path.
The subvolume can be specified by path (default), or by root id or UUID that are looked up relative to the given path.
Fields§
§rootid: Option<u64>Look up subvolume by its root ID instead of path
uuid: Option<ParsedUuid>Look up subvolume by its UUID instead of path
units: UnitMode§path: PathBufPath to a subvolume or any file within it
Trait Implementations§
Source§impl Args for SubvolumeShowCommand
impl Args for SubvolumeShowCommand
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl Debug for SubvolumeShowCommand
impl Debug for SubvolumeShowCommand
Source§impl FromArgMatches for SubvolumeShowCommand
impl FromArgMatches for SubvolumeShowCommand
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§impl Parser for SubvolumeShowCommand
impl Parser for SubvolumeShowCommand
Source§fn parse_from<I, T>(itr: I) -> Self
fn parse_from<I, T>(itr: I) -> Self
Parse from iterator, exit on error.
Source§fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
Parse from iterator, return Err on error.
Source§fn update_from<I, T>(&mut self, itr: I)
fn update_from<I, T>(&mut self, itr: I)
Source§impl Runnable for SubvolumeShowCommand
impl Runnable for SubvolumeShowCommand
Auto Trait Implementations§
impl Freeze for SubvolumeShowCommand
impl RefUnwindSafe for SubvolumeShowCommand
impl Send for SubvolumeShowCommand
impl Sync for SubvolumeShowCommand
impl Unpin for SubvolumeShowCommand
impl UnsafeUnpin for SubvolumeShowCommand
impl UnwindSafe for SubvolumeShowCommand
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