pub struct QgroupList {
pub status_flags: QgroupStatusFlags,
pub qgroups: Vec<QgroupInfo>,
}Expand description
Result of qgroup_list: overall quota status and per-qgroup details.
Fields§
§status_flags: QgroupStatusFlagsFlags from the BTRFS_QGROUP_STATUS_KEY item.
qgroups: Vec<QgroupInfo>All qgroups found in the quota tree, sorted by qgroupid.
Trait Implementations§
Source§impl Clone for QgroupList
impl Clone for QgroupList
Source§fn clone(&self) -> QgroupList
fn clone(&self) -> QgroupList
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 moreAuto Trait Implementations§
impl Freeze for QgroupList
impl RefUnwindSafe for QgroupList
impl Send for QgroupList
impl Sync for QgroupList
impl Unpin for QgroupList
impl UnsafeUnpin for QgroupList
impl UnwindSafe for QgroupList
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