pub struct QgroupShowCommand {Show 17 fields
pub path: PathBuf,
pub print_parent: bool,
pub print_child: bool,
pub print_rfer_limit: bool,
pub print_excl_limit: bool,
pub filter_all: bool,
pub filter_direct: bool,
pub raw: bool,
pub human_readable: bool,
pub iec: bool,
pub si: bool,
pub kbytes: bool,
pub mbytes: bool,
pub gbytes: bool,
pub tbytes: bool,
pub sort: Option<SortKeys>,
pub sync: bool,
}Expand description
List subvolume quota groups
Fields§
§path: PathBufPath to a mounted btrfs filesystem
print_parent: boolPrint parent qgroup id
print_child: boolPrint child qgroup id
print_rfer_limit: boolPrint limit of referenced size
print_excl_limit: boolPrint limit of exclusive size
filter_all: boolList all qgroups impacting path, including ancestral qgroups
filter_direct: boolList all qgroups impacting path, excluding ancestral qgroups
raw: boolShow raw numbers in bytes
human_readable: boolShow human friendly numbers, base 1024 (default)
iec: boolUse 1024 as a base (IEC units)
si: boolUse 1000 as a base (SI units)
kbytes: boolShow sizes in KiB
mbytes: boolShow sizes in MiB
gbytes: boolShow sizes in GiB
tbytes: boolShow sizes in TiB
sort: Option<SortKeys>Sort by a comma-separated list of fields (qgroupid, rfer, excl, max_rfer, max_excl)
sync: boolForce a sync before getting quota information
Trait Implementations§
Source§impl Args for QgroupShowCommand
impl Args for QgroupShowCommand
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 CommandFactory for QgroupShowCommand
impl CommandFactory for QgroupShowCommand
Source§impl Debug for QgroupShowCommand
impl Debug for QgroupShowCommand
Source§impl FromArgMatches for QgroupShowCommand
impl FromArgMatches for QgroupShowCommand
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 QgroupShowCommand
impl Parser for QgroupShowCommand
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)
Auto Trait Implementations§
impl Freeze for QgroupShowCommand
impl RefUnwindSafe for QgroupShowCommand
impl Send for QgroupShowCommand
impl Sync for QgroupShowCommand
impl Unpin for QgroupShowCommand
impl UnsafeUnpin for QgroupShowCommand
impl UnwindSafe for QgroupShowCommand
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