pub struct JiraProjectVersion {
pub id: String,
pub name: String,
pub description: Option<String>,
pub project_key: String,
pub released: bool,
pub archived: bool,
pub release_date: Option<String>,
pub start_date: Option<String>,
}Expand description
A JIRA project version (release version).
Fields§
§id: StringVersion ID.
name: StringVersion name (e.g., “1.0.0”).
description: Option<String>Version description.
project_key: StringOwning project key.
released: boolWhether the version is released.
archived: boolWhether the version is archived.
release_date: Option<String>Release date (ISO 8601, YYYY-MM-DD).
start_date: Option<String>Start date (ISO 8601, YYYY-MM-DD).
Trait Implementations§
Source§impl Clone for JiraProjectVersion
impl Clone for JiraProjectVersion
Source§fn clone(&self) -> JiraProjectVersion
fn clone(&self) -> JiraProjectVersion
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 JiraProjectVersion
impl Debug for JiraProjectVersion
Auto Trait Implementations§
impl Freeze for JiraProjectVersion
impl RefUnwindSafe for JiraProjectVersion
impl Send for JiraProjectVersion
impl Sync for JiraProjectVersion
impl Unpin for JiraProjectVersion
impl UnsafeUnpin for JiraProjectVersion
impl UnwindSafe for JiraProjectVersion
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