pub enum CustomContextVariable {
IssueContextVariable {
id: Option<i64>,
key: Option<String>,
},
JsonContextVariable {
value: Option<Value>,
},
UserContextVariable {
account_id: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for CustomContextVariable
impl Clone for CustomContextVariable
Source§fn clone(&self) -> CustomContextVariable
fn clone(&self) -> CustomContextVariable
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 CustomContextVariable
impl Debug for CustomContextVariable
Source§impl<'de> Deserialize<'de> for CustomContextVariable
impl<'de> Deserialize<'de> for CustomContextVariable
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 CustomContextVariable
impl PartialEq for CustomContextVariable
Source§impl Serialize for CustomContextVariable
impl Serialize for CustomContextVariable
impl StructuralPartialEq for CustomContextVariable
Auto Trait Implementations§
impl Freeze for CustomContextVariable
impl RefUnwindSafe for CustomContextVariable
impl Send for CustomContextVariable
impl Sync for CustomContextVariable
impl Unpin for CustomContextVariable
impl UnwindSafe for CustomContextVariable
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