pub struct OptionSetValue {
pub value: i32,
pub name: Option<String>,
}Expand description
Dataverse single option-set value.
Fields§
§value: i32Numeric option value.
name: Option<String>Display label for the option, when provided.
Trait Implementations§
Source§impl Clone for OptionSetValue
impl Clone for OptionSetValue
Source§fn clone(&self) -> OptionSetValue
fn clone(&self) -> OptionSetValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OptionSetValue
impl Debug for OptionSetValue
Source§impl<'de> Deserialize<'de> for OptionSetValue
impl<'de> Deserialize<'de> for OptionSetValue
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
Auto Trait Implementations§
impl Freeze for OptionSetValue
impl RefUnwindSafe for OptionSetValue
impl Send for OptionSetValue
impl Sync for OptionSetValue
impl Unpin for OptionSetValue
impl UnsafeUnpin for OptionSetValue
impl UnwindSafe for OptionSetValue
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