pub struct JiraUserGetResults {
pub users: Vec<JiraUserRecord>,
}Expand description
Batch wrapper around JiraUserRecord from resolving one or more account
IDs via GET /rest/api/3/user?accountId=.
Fields§
§users: Vec<JiraUserRecord>Resolved users, one per requested account ID (in request order).
Trait Implementations§
Source§impl Clone for JiraUserGetResults
impl Clone for JiraUserGetResults
Source§fn clone(&self) -> JiraUserGetResults
fn clone(&self) -> JiraUserGetResults
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 JiraUserGetResults
impl Debug for JiraUserGetResults
Source§impl JsonlSerialize for JiraUserGetResults
impl JsonlSerialize for JiraUserGetResults
Auto Trait Implementations§
impl Freeze for JiraUserGetResults
impl RefUnwindSafe for JiraUserGetResults
impl Send for JiraUserGetResults
impl Sync for JiraUserGetResults
impl Unpin for JiraUserGetResults
impl UnsafeUnpin for JiraUserGetResults
impl UnwindSafe for JiraUserGetResults
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