pub enum ProjectActionValues {
Create,
GetIssueTypes,
GetIssueTypeFields,
List,
}Expand description
Available project action values
- Create: Create new Jira Project
- GetIssueTypes: Get Jira Project issue types by Jira project key
- GetIssueTypeFields: Get Jira Project issue type fields by Jira project key and issue type ID
- List: List Jira Projects
Variants§
Create
Create new Jira Project
GetIssueTypes
Get Jira Project issue types by Jira project key
GetIssueTypeFields
Get Jira Project issue type fields by Jira project key and issue type ID
List
List Jira Projects
Trait Implementations§
Source§impl Clone for ProjectActionValues
impl Clone for ProjectActionValues
Source§fn clone(&self) -> ProjectActionValues
fn clone(&self) -> ProjectActionValues
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 ProjectActionValues
impl Debug for ProjectActionValues
Source§impl<'de> Deserialize<'de> for ProjectActionValues
impl<'de> Deserialize<'de> for ProjectActionValues
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 ProjectActionValues
impl PartialEq for ProjectActionValues
Source§impl Serialize for ProjectActionValues
impl Serialize for ProjectActionValues
Source§impl ValueEnum for ProjectActionValues
impl ValueEnum for ProjectActionValues
impl Copy for ProjectActionValues
impl StructuralPartialEq for ProjectActionValues
Auto Trait Implementations§
impl Freeze for ProjectActionValues
impl RefUnwindSafe for ProjectActionValues
impl Send for ProjectActionValues
impl Sync for ProjectActionValues
impl Unpin for ProjectActionValues
impl UnwindSafe for ProjectActionValues
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