pub struct ApprovalList {
pub items: Option<Vec<Approval>>,
pub kind: Option<String>,
pub next_page_token: Option<String>,
}Expand description
The response of an Approvals 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 approvals (response)
Fields§
§items: Option<Vec<Approval>>The list of Approvals. If nextPageToken is populated, then this list may be incomplete and an additional page of results should be fetched.
kind: Option<String>This is always drive#approvalList
next_page_token: Option<String>The page token for the next page of Approvals. This will be absent if the end of the Approvals 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 ApprovalList
impl Clone for ApprovalList
Source§fn clone(&self) -> ApprovalList
fn clone(&self) -> ApprovalList
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 ApprovalList
impl Debug for ApprovalList
Source§impl Default for ApprovalList
impl Default for ApprovalList
Source§fn default() -> ApprovalList
fn default() -> ApprovalList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApprovalList
impl<'de> Deserialize<'de> for ApprovalList
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 ApprovalList
impl Serialize for ApprovalList
impl ResponseResult for ApprovalList
Auto Trait Implementations§
impl Freeze for ApprovalList
impl RefUnwindSafe for ApprovalList
impl Send for ApprovalList
impl Sync for ApprovalList
impl Unpin for ApprovalList
impl UnwindSafe for ApprovalList
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