pub struct JiraProjectList {
pub projects: Vec<JiraProject>,
pub total: u32,
}Expand description
Result from listing JIRA projects.
Fields§
§projects: Vec<JiraProject>Projects returned.
total: u32Total number of projects.
Trait Implementations§
Source§impl Clone for JiraProjectList
impl Clone for JiraProjectList
Source§fn clone(&self) -> JiraProjectList
fn clone(&self) -> JiraProjectList
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 JiraProjectList
impl Debug for JiraProjectList
Auto Trait Implementations§
impl Freeze for JiraProjectList
impl RefUnwindSafe for JiraProjectList
impl Send for JiraProjectList
impl Sync for JiraProjectList
impl Unpin for JiraProjectList
impl UnsafeUnpin for JiraProjectList
impl UnwindSafe for JiraProjectList
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