pub enum PveLxcDevField {
PveDevConfig(Box<PveDevConfig>),
String(String),
}Variants§
PveDevConfig(Box<PveDevConfig>)
String(String)
Trait Implementations§
Source§impl Clone for PveLxcDevField
impl Clone for PveLxcDevField
Source§fn clone(&self) -> PveLxcDevField
fn clone(&self) -> PveLxcDevField
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 PveLxcDevField
impl Debug for PveLxcDevField
Source§impl Default for PveLxcDevField
impl Default for PveLxcDevField
Source§impl<'de> Deserialize<'de> for PveLxcDevField
impl<'de> Deserialize<'de> for PveLxcDevField
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 PveLxcDevField
impl PartialEq for PveLxcDevField
Source§fn eq(&self, other: &PveLxcDevField) -> bool
fn eq(&self, other: &PveLxcDevField) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PveLxcDevField
impl Serialize for PveLxcDevField
impl StructuralPartialEq for PveLxcDevField
Auto Trait Implementations§
impl Freeze for PveLxcDevField
impl RefUnwindSafe for PveLxcDevField
impl Send for PveLxcDevField
impl Sync for PveLxcDevField
impl Unpin for PveLxcDevField
impl UnsafeUnpin for PveLxcDevField
impl UnwindSafe for PveLxcDevField
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