pub struct UserCompetitionElimination {
pub name: Name,
pub score: i32,
pub team: String,
pub attacks: i32,
}Fields§
§name: Name§score: i32§team: String§attacks: i32Trait Implementations§
Source§impl Clone for UserCompetitionElimination
impl Clone for UserCompetitionElimination
Source§fn clone(&self) -> UserCompetitionElimination
fn clone(&self) -> UserCompetitionElimination
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 UserCompetitionElimination
impl Debug for UserCompetitionElimination
Source§impl<'de> Deserialize<'de> for UserCompetitionElimination
impl<'de> Deserialize<'de> for UserCompetitionElimination
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 From<UserCompetitionElimination> for Competition
impl From<UserCompetitionElimination> for Competition
Source§fn from(value: UserCompetitionElimination) -> Self
fn from(value: UserCompetitionElimination) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for UserCompetitionElimination
Auto Trait Implementations§
impl Freeze for UserCompetitionElimination
impl RefUnwindSafe for UserCompetitionElimination
impl Send for UserCompetitionElimination
impl Sync for UserCompetitionElimination
impl Unpin for UserCompetitionElimination
impl UnwindSafe for UserCompetitionElimination
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