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