pub struct EventBatchRecordFailure {
pub failure_cause: Option<String>,
pub kind: Option<String>,
pub range: Option<EventPeriodRange>,
}Expand description
A batch update failure resource.
This type is not used in any activity, and only used as part of another schema.
Fields§
§failure_cause: Option<String>The cause for the update failure.
kind: Option<String>Uniquely identifies the type of this resource. Value is always the fixed string games#eventBatchRecordFailure.
range: Option<EventPeriodRange>The time range which was rejected; empty for a request-wide failure.
Trait Implementations§
Source§impl Clone for EventBatchRecordFailure
impl Clone for EventBatchRecordFailure
Source§fn clone(&self) -> EventBatchRecordFailure
fn clone(&self) -> EventBatchRecordFailure
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 EventBatchRecordFailure
impl Debug for EventBatchRecordFailure
Source§impl Default for EventBatchRecordFailure
impl Default for EventBatchRecordFailure
Source§fn default() -> EventBatchRecordFailure
fn default() -> EventBatchRecordFailure
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventBatchRecordFailure
impl<'de> Deserialize<'de> for EventBatchRecordFailure
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 EventBatchRecordFailure
impl Serialize for EventBatchRecordFailure
impl Part for EventBatchRecordFailure
Auto Trait Implementations§
impl Freeze for EventBatchRecordFailure
impl RefUnwindSafe for EventBatchRecordFailure
impl Send for EventBatchRecordFailure
impl Sync for EventBatchRecordFailure
impl Unpin for EventBatchRecordFailure
impl UnwindSafe for EventBatchRecordFailure
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