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