pub struct SnapshotListResponse {
pub items: Option<Vec<Snapshot>>,
pub kind: Option<String>,
pub next_page_token: Option<String>,
}Expand description
A third party list snapshots response.
§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 snapshots (response)
Fields§
§items: Option<Vec<Snapshot>>The snapshots.
kind: Option<String>Uniquely identifies the type of this resource. Value is always the fixed string games#snapshotListResponse.
next_page_token: Option<String>Token corresponding to the next page of results. If there are no more results, the token is omitted.
Trait Implementations§
Source§impl Clone for SnapshotListResponse
impl Clone for SnapshotListResponse
Source§fn clone(&self) -> SnapshotListResponse
fn clone(&self) -> SnapshotListResponse
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 SnapshotListResponse
impl Debug for SnapshotListResponse
Source§impl Default for SnapshotListResponse
impl Default for SnapshotListResponse
Source§fn default() -> SnapshotListResponse
fn default() -> SnapshotListResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SnapshotListResponse
impl<'de> Deserialize<'de> for SnapshotListResponse
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 SnapshotListResponse
impl Serialize for SnapshotListResponse
impl ResponseResult for SnapshotListResponse
Auto Trait Implementations§
impl Freeze for SnapshotListResponse
impl RefUnwindSafe for SnapshotListResponse
impl Send for SnapshotListResponse
impl Sync for SnapshotListResponse
impl Unpin for SnapshotListResponse
impl UnwindSafe for SnapshotListResponse
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