pub fn print_table_full(data: PrintableData)Expand description
This function allows to print the objects details in a pretty way (full data).
It uses the prettytable library to print the version details.
§Arguments
data- A TablePrintable enum- Project: A vector of Project structs
- Version: A vector of Version structs
- IssueType: A vector of IssueType structs
- IssueTypeFields: A vector of IssueTypeFields structs
- IssueCreated: A vector of CreatedIssue structs
- IssueData: A vector of IssueBean structs
- IssueTransition: A vector of IssueTransition structs
- TransitionedIssue: A vector of TransitionedIssue structs
- VersionRelatedWork: A vector of VersionRelatedWork structs
- Generic: A vector of Generic JSON values
§Examples
use jira_v3_openapi::models::Version;
use jirust_cli::utils::{PrintableData, table_printer::print_table_full};
let versions: Vec<Version> = vec![Version::new()];
print_table_full(PrintableData::Version{ versions });