pub struct JiraProjectVersionList {
pub versions: Vec<JiraProjectVersion>,
pub total: u32,
}Expand description
Paginated wrapper around JiraProjectVersion hits from
GET /rest/api/3/project/{projectIdOrKey}/version.
Fields§
§versions: Vec<JiraProjectVersion>Versions returned.
total: u32Total number of versions.
Trait Implementations§
Source§impl Clone for JiraProjectVersionList
impl Clone for JiraProjectVersionList
Source§fn clone(&self) -> JiraProjectVersionList
fn clone(&self) -> JiraProjectVersionList
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 JiraProjectVersionList
impl Debug for JiraProjectVersionList
Auto Trait Implementations§
impl Freeze for JiraProjectVersionList
impl RefUnwindSafe for JiraProjectVersionList
impl Send for JiraProjectVersionList
impl Sync for JiraProjectVersionList
impl Unpin for JiraProjectVersionList
impl UnsafeUnpin for JiraProjectVersionList
impl UnwindSafe for JiraProjectVersionList
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