pub struct StringVar {
pub name: String,
pub value: Vec<u8>,
pub is_private: bool,
}
Fields§
§name: String
§value: Vec<u8>
§is_private: bool
Trait Implementations§
Source§impl Deserialize for StringVar
impl Deserialize for StringVar
fn deserialize(deser: &mut Deserializer<'_>) -> DeserializeResult<Self>
impl StructuralPartialEq for StringVar
Auto Trait Implementations§
impl Freeze for StringVar
impl RefUnwindSafe for StringVar
impl Send for StringVar
impl Sync for StringVar
impl Unpin for StringVar
impl UnwindSafe for StringVar
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