pub struct IssueTypeToContextMapping {
pub context_id: String,
pub issue_type_id: Option<String>,
pub is_any_issue_type: Option<bool>,
}
Expand description
IssueTypeToContextMapping : Mapping of an issue type to a context.
Fields§
§context_id: String
The ID of the context.
issue_type_id: Option<String>
The ID of the issue type.
is_any_issue_type: Option<bool>
Whether the context is mapped to any issue type.
Implementations§
Source§impl IssueTypeToContextMapping
impl IssueTypeToContextMapping
Sourcepub fn new(context_id: String) -> IssueTypeToContextMapping
pub fn new(context_id: String) -> IssueTypeToContextMapping
Mapping of an issue type to a context.
Trait Implementations§
Source§impl Clone for IssueTypeToContextMapping
impl Clone for IssueTypeToContextMapping
Source§fn clone(&self) -> IssueTypeToContextMapping
fn clone(&self) -> IssueTypeToContextMapping
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 IssueTypeToContextMapping
impl Debug for IssueTypeToContextMapping
Source§impl<'de> Deserialize<'de> for IssueTypeToContextMapping
impl<'de> Deserialize<'de> for IssueTypeToContextMapping
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
impl StructuralPartialEq for IssueTypeToContextMapping
Auto Trait Implementations§
impl Freeze for IssueTypeToContextMapping
impl RefUnwindSafe for IssueTypeToContextMapping
impl Send for IssueTypeToContextMapping
impl Sync for IssueTypeToContextMapping
impl Unpin for IssueTypeToContextMapping
impl UnwindSafe for IssueTypeToContextMapping
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