pub struct ReviewDetails {
pub is_overturned: bool,
pub in_progress: bool,
pub review_type: String,
pub challenge_team_id: u16,
pub player: Option<Person>,
}Fields§
§is_overturned: bool§in_progress: bool§review_type: String§challenge_team_id: u16§player: Option<Person>Trait Implementations§
Source§impl Debug for ReviewDetails
impl Debug for ReviewDetails
Source§impl Default for ReviewDetails
impl Default for ReviewDetails
Source§fn default() -> ReviewDetails
fn default() -> ReviewDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReviewDetails
impl<'de> Deserialize<'de> for ReviewDetails
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
Auto Trait Implementations§
impl Freeze for ReviewDetails
impl RefUnwindSafe for ReviewDetails
impl Send for ReviewDetails
impl Sync for ReviewDetails
impl Unpin for ReviewDetails
impl UnsafeUnpin for ReviewDetails
impl UnwindSafe for ReviewDetails
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