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