pub struct StringArrays {
pub ub_string_static_array_value: [String; 3],
pub ub_string_ub_array_value: Vec<String>,
pub ub_string_dynamic_array_value: Vec<String>,
pub string_dynamic_array_value: Vec<String>,
pub string_static_array_value: [String; 3],
pub string_bounded_array_value: Vec<String>,
pub def_string_dynamic_array_value: Vec<String>,
pub def_string_static_array_value: [String; 3],
pub def_string_bounded_array_value: Vec<String>,
pub def_various_quotes: Vec<String>,
pub def_various_commas: Vec<String>,
}Fields§
§ub_string_static_array_value: [String; 3]§ub_string_ub_array_value: Vec<String>§ub_string_dynamic_array_value: Vec<String>§string_dynamic_array_value: Vec<String>§string_static_array_value: [String; 3]§string_bounded_array_value: Vec<String>§def_string_dynamic_array_value: Vec<String>§def_string_static_array_value: [String; 3]§def_string_bounded_array_value: Vec<String>§def_various_quotes: Vec<String>§def_various_commas: Vec<String>Trait Implementations§
Source§impl Clone for StringArrays
impl Clone for StringArrays
Source§fn clone(&self) -> StringArrays
fn clone(&self) -> StringArrays
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 StringArrays
impl Debug for StringArrays
Source§impl Default for StringArrays
impl Default for StringArrays
Source§impl<'de> Deserialize<'de> for StringArrays
impl<'de> Deserialize<'de> for StringArrays
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
Source§impl PartialEq for StringArrays
impl PartialEq for StringArrays
Source§impl Serialize for StringArrays
impl Serialize for StringArrays
impl Message for StringArrays
impl StructuralPartialEq for StringArrays
Auto Trait Implementations§
impl Freeze for StringArrays
impl RefUnwindSafe for StringArrays
impl Send for StringArrays
impl Sync for StringArrays
impl Unpin for StringArrays
impl UnwindSafe for StringArrays
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