pub struct PlayUpdateScoreSpec {
pub entity_name: TeamMember,
pub update: UpdateScoreSpec,
}
Fields§
§entity_name: TeamMember
§update: UpdateScoreSpec
Trait Implementations§
Source§impl Clone for PlayUpdateScoreSpec
impl Clone for PlayUpdateScoreSpec
Source§fn clone(&self) -> PlayUpdateScoreSpec
fn clone(&self) -> PlayUpdateScoreSpec
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 PlayUpdateScoreSpec
impl Debug for PlayUpdateScoreSpec
Source§impl Deserialize for PlayUpdateScoreSpec
impl Deserialize for PlayUpdateScoreSpec
fn mc_deserialize(_rest: &[u8]) -> DeserializeResult<'_, Self>
Source§impl From<(TeamMember, UpdateScoreSpec)> for PlayUpdateScoreSpec
impl From<(TeamMember, UpdateScoreSpec)> for PlayUpdateScoreSpec
Source§fn from(other: (TeamMember, UpdateScoreSpec)) -> Self
fn from(other: (TeamMember, UpdateScoreSpec)) -> Self
Converts to this type from the input type.
Source§impl From<PlayUpdateScoreSpec> for (TeamMember, UpdateScoreSpec)
impl From<PlayUpdateScoreSpec> for (TeamMember, UpdateScoreSpec)
Source§fn from(other: PlayUpdateScoreSpec) -> Self
fn from(other: PlayUpdateScoreSpec) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PlayUpdateScoreSpec
impl PartialEq for PlayUpdateScoreSpec
Source§impl Serialize for PlayUpdateScoreSpec
impl Serialize for PlayUpdateScoreSpec
fn mc_serialize<S: Serializer>(&self, to: &mut S) -> SerializeResult
impl StructuralPartialEq for PlayUpdateScoreSpec
Auto Trait Implementations§
impl Freeze for PlayUpdateScoreSpec
impl RefUnwindSafe for PlayUpdateScoreSpec
impl Send for PlayUpdateScoreSpec
impl Sync for PlayUpdateScoreSpec
impl Unpin for PlayUpdateScoreSpec
impl UnwindSafe for PlayUpdateScoreSpec
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