pub enum StatisticsUuidGetResponse {
GameResultDetails(ResultDto),
ThisStatisticDoesNotExist,
}
Variants§
GameResultDetails(ResultDto)
Game result details
ThisStatisticDoesNotExist
This statistic does not exist.
Trait Implementations§
Source§impl Debug for StatisticsUuidGetResponse
impl Debug for StatisticsUuidGetResponse
Source§impl<'de> Deserialize<'de> for StatisticsUuidGetResponse
impl<'de> Deserialize<'de> for StatisticsUuidGetResponse
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 PartialEq for StatisticsUuidGetResponse
impl PartialEq for StatisticsUuidGetResponse
Source§fn eq(&self, other: &StatisticsUuidGetResponse) -> bool
fn eq(&self, other: &StatisticsUuidGetResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for StatisticsUuidGetResponse
Auto Trait Implementations§
impl Freeze for StatisticsUuidGetResponse
impl RefUnwindSafe for StatisticsUuidGetResponse
impl Send for StatisticsUuidGetResponse
impl Sync for StatisticsUuidGetResponse
impl Unpin for StatisticsUuidGetResponse
impl UnwindSafe for StatisticsUuidGetResponse
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