pub struct Vg {Show 35 fields
pub vg_fmt: String,
pub vg_uuid: String,
pub vg_name: String,
pub vg_attr: String,
pub vg_permissions: String,
pub vg_extendable: String,
pub vg_exported: String,
pub vg_autoactivation: String,
pub vg_partial: String,
pub vg_allocation_policy: String,
pub vg_clustered: String,
pub vg_shared: String,
pub vg_size: String,
pub vg_free: String,
pub vg_sysid: String,
pub vg_systemid: String,
pub vg_lock_type: String,
pub vg_lock_args: String,
pub vg_extent_size: String,
pub vg_extent_count: String,
pub vg_free_count: String,
pub max_lv: String,
pub max_pv: String,
pub pv_count: String,
pub vg_missing_pv_count: String,
pub lv_count: String,
pub snap_count: String,
pub vg_seqno: String,
pub vg_tags: String,
pub vg_profile: String,
pub vg_mda_count: String,
pub vg_mda_used_count: String,
pub vg_mda_free: String,
pub vg_mda_size: String,
pub vg_mda_copies: String,
}
Fields§
§vg_fmt: String
§vg_uuid: String
§vg_name: String
§vg_attr: String
§vg_permissions: String
§vg_extendable: String
§vg_exported: String
§vg_autoactivation: String
§vg_partial: String
§vg_allocation_policy: String
§vg_clustered: String
§vg_size: String
§vg_free: String
§vg_sysid: String
§vg_systemid: String
§vg_lock_type: String
§vg_lock_args: String
§vg_extent_size: String
§vg_extent_count: String
§vg_free_count: String
§max_lv: String
§max_pv: String
§pv_count: String
§vg_missing_pv_count: String
§lv_count: String
§snap_count: String
§vg_seqno: String
§vg_profile: String
§vg_mda_count: String
§vg_mda_used_count: String
§vg_mda_free: String
§vg_mda_size: String
§vg_mda_copies: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Vg
impl<'de> Deserialize<'de> for Vg
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Vg
Auto Trait Implementations§
impl Freeze for Vg
impl RefUnwindSafe for Vg
impl Send for Vg
impl Sync for Vg
impl Unpin for Vg
impl UnwindSafe for Vg
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more