pub struct EventRecordFailure {
pub event_id: Option<String>,
pub failure_cause: Option<String>,
pub kind: Option<String>,
}Expand description
An event update failure resource.
This type is not used in any activity, and only used as part of another schema.
Fields§
§event_id: Option<String>The ID of the event that was not updated.
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#eventRecordFailure.
Trait Implementations§
Source§impl Clone for EventRecordFailure
impl Clone for EventRecordFailure
Source§fn clone(&self) -> EventRecordFailure
fn clone(&self) -> EventRecordFailure
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 EventRecordFailure
impl Debug for EventRecordFailure
Source§impl Default for EventRecordFailure
impl Default for EventRecordFailure
Source§fn default() -> EventRecordFailure
fn default() -> EventRecordFailure
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventRecordFailure
impl<'de> Deserialize<'de> for EventRecordFailure
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 EventRecordFailure
impl Serialize for EventRecordFailure
impl Part for EventRecordFailure
Auto Trait Implementations§
impl Freeze for EventRecordFailure
impl RefUnwindSafe for EventRecordFailure
impl Send for EventRecordFailure
impl Sync for EventRecordFailure
impl Unpin for EventRecordFailure
impl UnwindSafe for EventRecordFailure
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