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