pub struct JiraProjectMetadata {
pub issue_types: Vec<JiraIssueType>,
pub components: Vec<JiraComponent>,
pub priorities: Vec<JiraPriority>,
pub link_types: Vec<JiraLinkType>,
pub custom_fields: Vec<JiraCustomField>,
}Expand description
Metadata for a single Jira project.
Fields§
§issue_types: Vec<JiraIssueType>Available issue types (filter out subtask types for create_issue).
components: Vec<JiraComponent>§priorities: Vec<JiraPriority>§link_types: Vec<JiraLinkType>§custom_fields: Vec<JiraCustomField>Trait Implementations§
Source§impl Clone for JiraProjectMetadata
impl Clone for JiraProjectMetadata
Source§fn clone(&self) -> JiraProjectMetadata
fn clone(&self) -> JiraProjectMetadata
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 JiraProjectMetadata
impl Debug for JiraProjectMetadata
Source§impl<'de> Deserialize<'de> for JiraProjectMetadata
impl<'de> Deserialize<'de> for JiraProjectMetadata
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 JiraProjectMetadata
impl RefUnwindSafe for JiraProjectMetadata
impl Send for JiraProjectMetadata
impl Sync for JiraProjectMetadata
impl Unpin for JiraProjectMetadata
impl UnsafeUnpin for JiraProjectMetadata
impl UnwindSafe for JiraProjectMetadata
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