pub struct EventUpdateResponse {
pub batch_failures: Option<Vec<EventBatchRecordFailure>>,
pub event_failures: Option<Vec<EventRecordFailure>>,
pub kind: Option<String>,
pub player_events: Option<Vec<PlayerEvent>>,
}Expand description
An event period update resource.
§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).
- record events (response)
Fields§
§batch_failures: Option<Vec<EventBatchRecordFailure>>Any batch-wide failures which occurred applying updates.
event_failures: Option<Vec<EventRecordFailure>>Any failures updating a particular event.
kind: Option<String>Uniquely identifies the type of this resource. Value is always the fixed string games#eventUpdateResponse.
player_events: Option<Vec<PlayerEvent>>The current status of any updated events
Trait Implementations§
Source§impl Clone for EventUpdateResponse
impl Clone for EventUpdateResponse
Source§fn clone(&self) -> EventUpdateResponse
fn clone(&self) -> EventUpdateResponse
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 EventUpdateResponse
impl Debug for EventUpdateResponse
Source§impl Default for EventUpdateResponse
impl Default for EventUpdateResponse
Source§fn default() -> EventUpdateResponse
fn default() -> EventUpdateResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventUpdateResponse
impl<'de> Deserialize<'de> for EventUpdateResponse
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 EventUpdateResponse
impl Serialize for EventUpdateResponse
impl ResponseResult for EventUpdateResponse
Auto Trait Implementations§
impl Freeze for EventUpdateResponse
impl RefUnwindSafe for EventUpdateResponse
impl Send for EventUpdateResponse
impl Sync for EventUpdateResponse
impl Unpin for EventUpdateResponse
impl UnwindSafe for EventUpdateResponse
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