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