pub struct SetVarSpec {
pub collection: String,
pub key: String,
pub value: SetVarValue,
}Expand description
SetVar specification.
Fields§
§collection: StringCollection name (e.g., “tx”).
key: StringVariable key.
value: SetVarValueValue to set.
Trait Implementations§
Source§impl Clone for SetVarSpec
impl Clone for SetVarSpec
Source§fn clone(&self) -> SetVarSpec
fn clone(&self) -> SetVarSpec
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 moreAuto Trait Implementations§
impl Freeze for SetVarSpec
impl RefUnwindSafe for SetVarSpec
impl Send for SetVarSpec
impl Sync for SetVarSpec
impl Unpin for SetVarSpec
impl UnwindSafe for SetVarSpec
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