pub struct ListAccessProposalsResponse {
pub access_proposals: Option<Vec<AccessProposal>>,
pub next_page_token: Option<String>,
}Expand description
The response to an access proposal list request.
§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 accessproposals (response)
Fields§
§access_proposals: Option<Vec<AccessProposal>>The list of access proposals. This field is only populated in Drive API v3.
next_page_token: Option<String>The continuation token for the next page of results. This will be absent if the end of the results list has been reached. If the token is rejected for any reason, it should be discarded, and pagination should be restarted from the first page of results.
Trait Implementations§
Source§impl Clone for ListAccessProposalsResponse
impl Clone for ListAccessProposalsResponse
Source§fn clone(&self) -> ListAccessProposalsResponse
fn clone(&self) -> ListAccessProposalsResponse
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 ListAccessProposalsResponse
impl Debug for ListAccessProposalsResponse
Source§impl Default for ListAccessProposalsResponse
impl Default for ListAccessProposalsResponse
Source§fn default() -> ListAccessProposalsResponse
fn default() -> ListAccessProposalsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListAccessProposalsResponse
impl<'de> Deserialize<'de> for ListAccessProposalsResponse
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 ListAccessProposalsResponse
Auto Trait Implementations§
impl Freeze for ListAccessProposalsResponse
impl RefUnwindSafe for ListAccessProposalsResponse
impl Send for ListAccessProposalsResponse
impl Sync for ListAccessProposalsResponse
impl Unpin for ListAccessProposalsResponse
impl UnwindSafe for ListAccessProposalsResponse
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