pub struct UserContextVariable {
pub _type: String,
pub account_id: String,
}Expand description
UserContextVariable : A user specified as an Atlassian account ID.
Fields§
§_type: StringType of custom context variable.
account_id: StringThe account ID of the user.
Implementations§
Trait Implementations§
Source§impl Clone for UserContextVariable
impl Clone for UserContextVariable
Source§fn clone(&self) -> UserContextVariable
fn clone(&self) -> UserContextVariable
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 UserContextVariable
impl Debug for UserContextVariable
Source§impl Default for UserContextVariable
impl Default for UserContextVariable
Source§fn default() -> UserContextVariable
fn default() -> UserContextVariable
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserContextVariable
impl<'de> Deserialize<'de> for UserContextVariable
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 UserContextVariable
impl PartialEq for UserContextVariable
Source§impl Serialize for UserContextVariable
impl Serialize for UserContextVariable
impl StructuralPartialEq for UserContextVariable
Auto Trait Implementations§
impl Freeze for UserContextVariable
impl RefUnwindSafe for UserContextVariable
impl Send for UserContextVariable
impl Sync for UserContextVariable
impl Unpin for UserContextVariable
impl UnwindSafe for UserContextVariable
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