pub struct WStrings {
pub wstring_value: String,
pub wstring_value_default1: String,
pub wstring_value_default2: String,
pub wstring_value_default3: String,
pub array_of_wstrings: [String; 3],
pub bounded_sequence_of_wstrings: Vec<String>,
pub unbounded_sequence_of_wstrings: Vec<String>,
}
Fields§
§wstring_value: String
§wstring_value_default1: String
§wstring_value_default2: String
§wstring_value_default3: String
§array_of_wstrings: [String; 3]
§bounded_sequence_of_wstrings: Vec<String>
§unbounded_sequence_of_wstrings: Vec<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for WStrings
impl<'de> Deserialize<'de> for WStrings
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
impl Message for WStrings
impl StructuralPartialEq for WStrings
Auto Trait Implementations§
impl Freeze for WStrings
impl RefUnwindSafe for WStrings
impl Send for WStrings
impl Sync for WStrings
impl Unpin for WStrings
impl UnwindSafe for WStrings
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