#[non_exhaustive]pub struct MultiSelectValues {
pub values: Vec<ConfigValueOption>,
/* private fields */
}Expand description
The config variable value of data type multi select.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.values: Vec<ConfigValueOption>Optional. The config variable value of data type multi select.
Implementations§
Source§impl MultiSelectValues
impl MultiSelectValues
pub fn new() -> Self
Sourcepub fn set_values<T, V>(self, v: T) -> Self
pub fn set_values<T, V>(self, v: T) -> Self
Trait Implementations§
Source§impl Clone for MultiSelectValues
impl Clone for MultiSelectValues
Source§fn clone(&self) -> MultiSelectValues
fn clone(&self) -> MultiSelectValues
Returns a duplicate 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 MultiSelectValues
impl Debug for MultiSelectValues
Source§impl Default for MultiSelectValues
impl Default for MultiSelectValues
Source§fn default() -> MultiSelectValues
fn default() -> MultiSelectValues
Returns the “default value” for a type. Read more
Source§impl Message for MultiSelectValues
impl Message for MultiSelectValues
Source§impl PartialEq for MultiSelectValues
impl PartialEq for MultiSelectValues
impl StructuralPartialEq for MultiSelectValues
Auto Trait Implementations§
impl Freeze for MultiSelectValues
impl RefUnwindSafe for MultiSelectValues
impl Send for MultiSelectValues
impl Sync for MultiSelectValues
impl Unpin for MultiSelectValues
impl UnsafeUnpin for MultiSelectValues
impl UnwindSafe for MultiSelectValues
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