pub struct ContextualVariable {
pub name: String,
pub value: String,
pub description: String,
pub is_custom: bool,
}
Fields§
§name: String
§value: String
§description: String
§is_custom: bool
Implementations§
Trait Implementations§
Source§impl Clone for ContextualVariable
impl Clone for ContextualVariable
Source§fn clone(&self) -> ContextualVariable
fn clone(&self) -> ContextualVariable
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 ContextualVariable
impl Debug for ContextualVariable
Source§impl Default for ContextualVariable
impl Default for ContextualVariable
Source§fn default() -> ContextualVariable
fn default() -> ContextualVariable
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContextualVariable
impl<'de> Deserialize<'de> for ContextualVariable
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 ContextualVariable
impl PartialEq for ContextualVariable
Source§impl Serialize for ContextualVariable
impl Serialize for ContextualVariable
impl StructuralPartialEq for ContextualVariable
Auto Trait Implementations§
impl Freeze for ContextualVariable
impl RefUnwindSafe for ContextualVariable
impl Send for ContextualVariable
impl Sync for ContextualVariable
impl Unpin for ContextualVariable
impl UnwindSafe for ContextualVariable
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