pub struct CreateVariableOption {
pub value: String,
}Fields§
§value: StringValue of the variable to create. Special characters will be retained. Line endings will be normalized to LF to
match the behaviour of browsers. Encode the data with Base64 if line endings should be retained.
Trait Implementations§
Source§impl Clone for CreateVariableOption
impl Clone for CreateVariableOption
Source§fn clone(&self) -> CreateVariableOption
fn clone(&self) -> CreateVariableOption
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 CreateVariableOption
impl Debug for CreateVariableOption
Source§impl<'de> Deserialize<'de> for CreateVariableOption
impl<'de> Deserialize<'de> for CreateVariableOption
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 CreateVariableOption
impl PartialEq for CreateVariableOption
Source§impl Serialize for CreateVariableOption
impl Serialize for CreateVariableOption
impl StructuralPartialEq for CreateVariableOption
Auto Trait Implementations§
impl Freeze for CreateVariableOption
impl RefUnwindSafe for CreateVariableOption
impl Send for CreateVariableOption
impl Sync for CreateVariableOption
impl Unpin for CreateVariableOption
impl UnsafeUnpin for CreateVariableOption
impl UnwindSafe for CreateVariableOption
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