pub struct ListGuardianInvitationsResponse {
pub guardian_invitations: Option<Vec<GuardianInvitation>>,
pub next_page_token: Option<String>,
}Expand description
Response when listing guardian invitations.
§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).
- guardian invitations list user profiles (response)
Fields§
§guardian_invitations: Option<Vec<GuardianInvitation>>Guardian invitations that matched the list request.
next_page_token: Option<String>Token identifying the next page of results to return. If empty, no further results are available.
Trait Implementations§
Source§impl Clone for ListGuardianInvitationsResponse
impl Clone for ListGuardianInvitationsResponse
Source§fn clone(&self) -> ListGuardianInvitationsResponse
fn clone(&self) -> ListGuardianInvitationsResponse
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 Default for ListGuardianInvitationsResponse
impl Default for ListGuardianInvitationsResponse
Source§fn default() -> ListGuardianInvitationsResponse
fn default() -> ListGuardianInvitationsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListGuardianInvitationsResponse
impl<'de> Deserialize<'de> for ListGuardianInvitationsResponse
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
impl ResponseResult for ListGuardianInvitationsResponse
Auto Trait Implementations§
impl Freeze for ListGuardianInvitationsResponse
impl RefUnwindSafe for ListGuardianInvitationsResponse
impl Send for ListGuardianInvitationsResponse
impl Sync for ListGuardianInvitationsResponse
impl Unpin for ListGuardianInvitationsResponse
impl UnwindSafe for ListGuardianInvitationsResponse
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