Struct openconfiguration::Value
source · pub struct Value {
pub value_id: String,
pub value_text: HashMap<String, String>,
pub position: i32,
pub values: Vec<Value>,
}Expand description
Value of properties
Fields
value_id: StringThe unique id of the property value.
value_text: HashMap<String, String>Localized value text. Key is ISO 639-1 language code.
position: i32The position of the value in the property’s selection list.
values: Vec<Value>The sub values of the value.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Value
impl<'de> Deserialize<'de> for Value
sourcefn 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
impl StructuralPartialEq for Value
Auto Trait Implementations
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more