pub struct ResultDto {
pub score: Option<i64>,
pub accuracy: Option<f32>,
pub details: Option<HitDetail>,
pub average_offset_time: Option<i32>,
pub elo: Option<Tier>,
pub pb: Option<bool>,
pub user: Option<String>,
}
Fields§
§score: Option<i64>
§accuracy: Option<f32>
§details: Option<HitDetail>
§average_offset_time: Option<i32>
§elo: Option<Tier>
§pb: Option<bool>
§user: Option<String>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ResultDto
impl<'de> Deserialize<'de> for ResultDto
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 FromStr for ResultDto
Converts Query Parameters representation (style=form, explode=false) to a ResultDto value
as specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde deserializer
impl FromStr for ResultDto
Converts Query Parameters representation (style=form, explode=false) to a ResultDto value as specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde deserializer
Source§impl ToString for ResultDto
Converts the ResultDto value to the Query Parameters representation (style=form, explode=false)
specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde serializer
impl ToString for ResultDto
Converts the ResultDto value to the Query Parameters representation (style=form, explode=false) specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde serializer
Source§impl<'v_a> ValidateArgs<'v_a> for ResultDto
impl<'v_a> ValidateArgs<'v_a> for ResultDto
impl StructuralPartialEq for ResultDto
Auto Trait Implementations§
impl Freeze for ResultDto
impl RefUnwindSafe for ResultDto
impl Send for ResultDto
impl Sync for ResultDto
impl Unpin for ResultDto
impl UnwindSafe for ResultDto
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