Enum jirust_cli::utils::TablePrintable
source · pub enum TablePrintable {
IssueType {
issue_types: Vec<IssueTypeIssueCreateMetadata>,
},
IssueTypeField {
issue_type_fields: Vec<FieldCreateMetadata>,
},
Project {
projects: Vec<Project>,
},
Version {
versions: Vec<Version>,
},
}Expand description
Enum to hold the different types of data that can be printed in a table
§Variants
IssueType- Jira Issue types available in a project dataIssueTypeField- Fields available for a specific issue type in a project dataProject- Projects available in Jira dataVersion- Versions available in a project data
Variants§
IssueType
Fields
§
issue_types: Vec<IssueTypeIssueCreateMetadata>IssueTypeField
Fields
§
issue_type_fields: Vec<FieldCreateMetadata>Project
Version
Auto Trait Implementations§
impl Freeze for TablePrintable
impl RefUnwindSafe for TablePrintable
impl Send for TablePrintable
impl Sync for TablePrintable
impl Unpin for TablePrintable
impl UnwindSafe for TablePrintable
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