pub struct EventDefinitionListResponse {
pub items: Option<Vec<EventDefinition>>,
pub kind: Option<String>,
pub next_page_token: Option<String>,
}Expand description
A ListDefinitions 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 definitions events (response)
Fields§
§items: Option<Vec<EventDefinition>>The event definitions.
kind: Option<String>Uniquely identifies the type of this resource. Value is always the fixed string games#eventDefinitionListResponse.
next_page_token: Option<String>The pagination token for the next page of results.
Trait Implementations§
Source§impl Clone for EventDefinitionListResponse
impl Clone for EventDefinitionListResponse
Source§fn clone(&self) -> EventDefinitionListResponse
fn clone(&self) -> EventDefinitionListResponse
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 EventDefinitionListResponse
impl Debug for EventDefinitionListResponse
Source§impl Default for EventDefinitionListResponse
impl Default for EventDefinitionListResponse
Source§fn default() -> EventDefinitionListResponse
fn default() -> EventDefinitionListResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventDefinitionListResponse
impl<'de> Deserialize<'de> for EventDefinitionListResponse
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 EventDefinitionListResponse
Auto Trait Implementations§
impl Freeze for EventDefinitionListResponse
impl RefUnwindSafe for EventDefinitionListResponse
impl Send for EventDefinitionListResponse
impl Sync for EventDefinitionListResponse
impl Unpin for EventDefinitionListResponse
impl UnwindSafe for EventDefinitionListResponse
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