pub struct ExternalEntityInfoJiraMetadata {
pub issue_key: Option<String>,
pub project_id: Option<String>,
pub issue_type_id: Option<String>,
}Expand description
Metadata about the external Jira entity.
Fields§
§issue_key: Option<String>The key of the Jira issue.
project_id: Option<String>The id of the Jira project.
issue_type_id: Option<String>The id of the Jira issue type.
Trait Implementations§
Source§impl Clone for ExternalEntityInfoJiraMetadata
impl Clone for ExternalEntityInfoJiraMetadata
Source§fn clone(&self) -> ExternalEntityInfoJiraMetadata
fn clone(&self) -> ExternalEntityInfoJiraMetadata
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 Default for ExternalEntityInfoJiraMetadata
impl Default for ExternalEntityInfoJiraMetadata
Source§fn default() -> ExternalEntityInfoJiraMetadata
fn default() -> ExternalEntityInfoJiraMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExternalEntityInfoJiraMetadata
impl<'de> Deserialize<'de> for ExternalEntityInfoJiraMetadata
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
Auto Trait Implementations§
impl Freeze for ExternalEntityInfoJiraMetadata
impl RefUnwindSafe for ExternalEntityInfoJiraMetadata
impl Send for ExternalEntityInfoJiraMetadata
impl Sync for ExternalEntityInfoJiraMetadata
impl Unpin for ExternalEntityInfoJiraMetadata
impl UnwindSafe for ExternalEntityInfoJiraMetadata
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