pub struct ValueOperand {
pub value: String,
}
Expand description
ValueOperand : An operand that is a user-provided value.
Fields§
§value: String
The operand value.
Implementations§
Source§impl ValueOperand
impl ValueOperand
Sourcepub fn new(value: String) -> ValueOperand
pub fn new(value: String) -> ValueOperand
An operand that is a user-provided value.
Trait Implementations§
Source§impl Clone for ValueOperand
impl Clone for ValueOperand
Source§fn clone(&self) -> ValueOperand
fn clone(&self) -> ValueOperand
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 ValueOperand
impl Debug for ValueOperand
Source§impl Default for ValueOperand
impl Default for ValueOperand
Source§fn default() -> ValueOperand
fn default() -> ValueOperand
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ValueOperand
impl<'de> Deserialize<'de> for ValueOperand
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 ValueOperand
impl PartialEq for ValueOperand
Source§impl Serialize for ValueOperand
impl Serialize for ValueOperand
impl StructuralPartialEq for ValueOperand
Auto Trait Implementations§
impl Freeze for ValueOperand
impl RefUnwindSafe for ValueOperand
impl Send for ValueOperand
impl Sync for ValueOperand
impl Unpin for ValueOperand
impl UnwindSafe for ValueOperand
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