pub enum StringOrDcv {
String(String),
Dcv(DataComponentValue),
}
Expand description
A string or data component value.
Variants§
String(String)
Dcv(DataComponentValue)
Trait Implementations§
Source§impl Clone for StringOrDcv
impl Clone for StringOrDcv
Source§fn clone(&self) -> StringOrDcv
fn clone(&self) -> StringOrDcv
Returns a copy of the value. Read more
1.0.0 · 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 StringOrDcv
impl Debug for StringOrDcv
Source§impl<'de> Deserialize<'de> for StringOrDcv
impl<'de> Deserialize<'de> for StringOrDcv
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 From<&str> for StringOrDcv
impl From<&str> for StringOrDcv
Source§impl From<DataComponentValue> for StringOrDcv
impl From<DataComponentValue> for StringOrDcv
Source§fn from(value: DataComponentValue) -> Self
fn from(value: DataComponentValue) -> Self
Converts to this type from the input type.
Source§impl From<String> for StringOrDcv
impl From<String> for StringOrDcv
Source§impl FromStr for StringOrDcv
impl FromStr for StringOrDcv
Source§impl PartialEq for StringOrDcv
impl PartialEq for StringOrDcv
Source§impl Serialize for StringOrDcv
impl Serialize for StringOrDcv
impl Eq for StringOrDcv
impl StructuralPartialEq for StringOrDcv
Auto Trait Implementations§
impl Freeze for StringOrDcv
impl RefUnwindSafe for StringOrDcv
impl Send for StringOrDcv
impl Sync for StringOrDcv
impl Unpin for StringOrDcv
impl UnwindSafe for StringOrDcv
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