pub struct UserProfileList {
pub etag: Option<String>,
pub items: Option<Vec<UserProfile>>,
pub kind: Option<String>,
}Expand description
Represents the list of user profiles.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- list user profiles (response)
Fields§
§etag: Option<String>The eTag of this response for caching purposes.
items: Option<Vec<UserProfile>>The user profiles returned in this response.
kind: Option<String>The kind of list this is, in this case dfareporting#userProfileList.
Trait Implementations§
Source§impl Clone for UserProfileList
impl Clone for UserProfileList
Source§fn clone(&self) -> UserProfileList
fn clone(&self) -> UserProfileList
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 UserProfileList
impl Debug for UserProfileList
Source§impl Default for UserProfileList
impl Default for UserProfileList
Source§fn default() -> UserProfileList
fn default() -> UserProfileList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserProfileList
impl<'de> Deserialize<'de> for UserProfileList
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for UserProfileList
impl Serialize for UserProfileList
impl ResponseResult for UserProfileList
Auto Trait Implementations§
impl Freeze for UserProfileList
impl RefUnwindSafe for UserProfileList
impl Send for UserProfileList
impl Sync for UserProfileList
impl Unpin for UserProfileList
impl UnwindSafe for UserProfileList
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