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