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