pub struct InvalidIdentifierError {
pub invalid_external_user_ids: Option<Vec<String>>,
pub invalid_player_ids: Option<Vec<String>>,
}
Fields§
§invalid_external_user_ids: Option<Vec<String>>
Returned if using include_external_user_ids
invalid_player_ids: Option<Vec<String>>
Returned if using include_player_ids and some were valid and others were not.
Implementations§
source§impl InvalidIdentifierError
impl InvalidIdentifierError
pub fn new() -> InvalidIdentifierError
Trait Implementations§
source§impl Clone for InvalidIdentifierError
impl Clone for InvalidIdentifierError
source§fn clone(&self) -> InvalidIdentifierError
fn clone(&self) -> InvalidIdentifierError
Returns a copy 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 InvalidIdentifierError
impl Debug for InvalidIdentifierError
source§impl Default for InvalidIdentifierError
impl Default for InvalidIdentifierError
source§fn default() -> InvalidIdentifierError
fn default() -> InvalidIdentifierError
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for InvalidIdentifierError
impl<'de> Deserialize<'de> for InvalidIdentifierError
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<InvalidIdentifierError> for InvalidIdentifierError
impl PartialEq<InvalidIdentifierError> for InvalidIdentifierError
source§fn eq(&self, other: &InvalidIdentifierError) -> bool
fn eq(&self, other: &InvalidIdentifierError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.