#[non_exhaustive]pub struct MultiIntValues {
pub values: Vec<i32>,
/* private fields */
}Expand description
The config variable value of data type multi int.
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<i32>Optional. The config variable value of data type multi int.
Implementations§
Source§impl MultiIntValues
impl MultiIntValues
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 MultiIntValues
impl Clone for MultiIntValues
Source§fn clone(&self) -> MultiIntValues
fn clone(&self) -> MultiIntValues
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 MultiIntValues
impl Debug for MultiIntValues
Source§impl Default for MultiIntValues
impl Default for MultiIntValues
Source§fn default() -> MultiIntValues
fn default() -> MultiIntValues
Returns the “default value” for a type. Read more
Source§impl Message for MultiIntValues
impl Message for MultiIntValues
Source§impl PartialEq for MultiIntValues
impl PartialEq for MultiIntValues
impl StructuralPartialEq for MultiIntValues
Auto Trait Implementations§
impl Freeze for MultiIntValues
impl RefUnwindSafe for MultiIntValues
impl Send for MultiIntValues
impl Sync for MultiIntValues
impl Unpin for MultiIntValues
impl UnsafeUnpin for MultiIntValues
impl UnwindSafe for MultiIntValues
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