pub struct DataComponentValue {
pub cascade_values: Option<CascadeValues>,
pub lang: Option<String>,
pub value: String,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A simple value for a component.
Fields§
§cascade_values: Option<CascadeValues>
§lang: Option<String>
§value: String
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for DataComponentValue
impl Clone for DataComponentValue
Source§fn clone(&self) -> DataComponentValue
fn clone(&self) -> DataComponentValue
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 DataComponentValue
impl Debug for DataComponentValue
Source§impl Default for DataComponentValue
impl Default for DataComponentValue
Source§fn default() -> DataComponentValue
fn default() -> DataComponentValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DataComponentValue
impl<'de> Deserialize<'de> for DataComponentValue
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 Extendable for DataComponentValue
impl Extendable for DataComponentValue
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 PartialEq for DataComponentValue
impl PartialEq for DataComponentValue
Source§impl Serialize for DataComponentValue
impl Serialize for DataComponentValue
impl Eq for DataComponentValue
impl StructuralPartialEq for DataComponentValue
Auto Trait Implementations§
impl Freeze for DataComponentValue
impl RefUnwindSafe for DataComponentValue
impl Send for DataComponentValue
impl Sync for DataComponentValue
impl Unpin for DataComponentValue
impl UnwindSafe for DataComponentValue
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