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