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