pub struct EventUpdateRequest {
pub definition_id: Option<String>,
pub kind: Option<String>,
pub update_count: Option<i64>,
}Expand description
An event period update resource.
This type is not used in any activity, and only used as part of another schema.
Fields§
§definition_id: Option<String>The ID of the event being modified in this update.
kind: Option<String>Uniquely identifies the type of this resource. Value is always the fixed string games#eventUpdateRequest.
update_count: Option<i64>The number of times this event occurred in this time period.
Trait Implementations§
Source§impl Clone for EventUpdateRequest
impl Clone for EventUpdateRequest
Source§fn clone(&self) -> EventUpdateRequest
fn clone(&self) -> EventUpdateRequest
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 EventUpdateRequest
impl Debug for EventUpdateRequest
Source§impl Default for EventUpdateRequest
impl Default for EventUpdateRequest
Source§fn default() -> EventUpdateRequest
fn default() -> EventUpdateRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventUpdateRequest
impl<'de> Deserialize<'de> for EventUpdateRequest
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 EventUpdateRequest
impl Serialize for EventUpdateRequest
impl Part for EventUpdateRequest
Auto Trait Implementations§
impl Freeze for EventUpdateRequest
impl RefUnwindSafe for EventUpdateRequest
impl Send for EventUpdateRequest
impl Sync for EventUpdateRequest
impl Unpin for EventUpdateRequest
impl UnwindSafe for EventUpdateRequest
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