pub struct PlayerErrorsRaisedParams {
pub player_id: PlayerId,
pub errors: Vec<PlayerError>,
}Expand description
Send a list of any errors that need to be delivered. playerErrorsRaised
Fields§
§player_id: PlayerId§errors: Vec<PlayerError>Trait Implementations§
Source§impl Clone for PlayerErrorsRaisedParams
impl Clone for PlayerErrorsRaisedParams
Source§fn clone(&self) -> PlayerErrorsRaisedParams
fn clone(&self) -> PlayerErrorsRaisedParams
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 PlayerErrorsRaisedParams
impl Debug for PlayerErrorsRaisedParams
Source§impl<'de> Deserialize<'de> for PlayerErrorsRaisedParams
impl<'de> Deserialize<'de> for PlayerErrorsRaisedParams
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 PlayerErrorsRaisedParams
impl PartialEq for PlayerErrorsRaisedParams
Source§impl Serialize for PlayerErrorsRaisedParams
impl Serialize for PlayerErrorsRaisedParams
impl StructuralPartialEq for PlayerErrorsRaisedParams
Auto Trait Implementations§
impl Freeze for PlayerErrorsRaisedParams
impl RefUnwindSafe for PlayerErrorsRaisedParams
impl Send for PlayerErrorsRaisedParams
impl Sync for PlayerErrorsRaisedParams
impl Unpin for PlayerErrorsRaisedParams
impl UnsafeUnpin for PlayerErrorsRaisedParams
impl UnwindSafe for PlayerErrorsRaisedParams
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