pub struct EventPeriodRange {
pub kind: Option<String>,
pub period_end_millis: Option<i64>,
pub period_start_millis: Option<i64>,
}Expand description
An event period time range.
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#eventPeriodRange.
period_end_millis: Option<i64>The time when this update period ends, in millis, since 1970 UTC (Unix Epoch).
period_start_millis: Option<i64>The time when this update period begins, in millis, since 1970 UTC (Unix Epoch).
Trait Implementations§
Source§impl Clone for EventPeriodRange
impl Clone for EventPeriodRange
Source§fn clone(&self) -> EventPeriodRange
fn clone(&self) -> EventPeriodRange
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 EventPeriodRange
impl Debug for EventPeriodRange
Source§impl Default for EventPeriodRange
impl Default for EventPeriodRange
Source§fn default() -> EventPeriodRange
fn default() -> EventPeriodRange
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventPeriodRange
impl<'de> Deserialize<'de> for EventPeriodRange
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 EventPeriodRange
impl Serialize for EventPeriodRange
impl Part for EventPeriodRange
Auto Trait Implementations§
impl Freeze for EventPeriodRange
impl RefUnwindSafe for EventPeriodRange
impl Send for EventPeriodRange
impl Sync for EventPeriodRange
impl Unpin for EventPeriodRange
impl UnwindSafe for EventPeriodRange
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