pub enum StringOrScv {
String(String),
SimpleComponent(SimpleComponentValue),
}
Expand description
A string or simple component value.
Variants§
String(String)
SimpleComponent(SimpleComponentValue)
Trait Implementations§
Source§impl Clone for StringOrScv
impl Clone for StringOrScv
Source§fn clone(&self) -> StringOrScv
fn clone(&self) -> StringOrScv
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 StringOrScv
impl Debug for StringOrScv
Source§impl<'de> Deserialize<'de> for StringOrScv
impl<'de> Deserialize<'de> for StringOrScv
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 StringOrScv
impl From<&str> for StringOrScv
Source§impl From<SimpleComponentValue> for StringOrScv
impl From<SimpleComponentValue> for StringOrScv
Source§fn from(value: SimpleComponentValue) -> Self
fn from(value: SimpleComponentValue) -> Self
Converts to this type from the input type.
Source§impl From<String> for StringOrScv
impl From<String> for StringOrScv
Source§impl FromStr for StringOrScv
impl FromStr for StringOrScv
Source§impl PartialEq for StringOrScv
impl PartialEq for StringOrScv
Source§impl Serialize for StringOrScv
impl Serialize for StringOrScv
impl Eq for StringOrScv
impl StructuralPartialEq for StringOrScv
Auto Trait Implementations§
impl Freeze for StringOrScv
impl RefUnwindSafe for StringOrScv
impl Send for StringOrScv
impl Sync for StringOrScv
impl Unpin for StringOrScv
impl UnwindSafe for StringOrScv
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