pub enum PveRootfsField {
PveRootfsConfig(Box<PveRootfsConfig>),
String(String),
}Variants§
PveRootfsConfig(Box<PveRootfsConfig>)
String(String)
Trait Implementations§
Source§impl Clone for PveRootfsField
impl Clone for PveRootfsField
Source§fn clone(&self) -> PveRootfsField
fn clone(&self) -> PveRootfsField
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PveRootfsField
impl Debug for PveRootfsField
Source§impl Default for PveRootfsField
impl Default for PveRootfsField
Source§impl<'de> Deserialize<'de> for PveRootfsField
impl<'de> Deserialize<'de> for PveRootfsField
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
Source§impl PartialEq for PveRootfsField
impl PartialEq for PveRootfsField
Source§fn eq(&self, other: &PveRootfsField) -> bool
fn eq(&self, other: &PveRootfsField) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PveRootfsField
impl Serialize for PveRootfsField
impl StructuralPartialEq for PveRootfsField
Auto Trait Implementations§
impl Freeze for PveRootfsField
impl RefUnwindSafe for PveRootfsField
impl Send for PveRootfsField
impl Sync for PveRootfsField
impl Unpin for PveRootfsField
impl UnsafeUnpin for PveRootfsField
impl UnwindSafe for PveRootfsField
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