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
sourceimpl InvalidIdentifierError
impl InvalidIdentifierError
pub fn new() -> InvalidIdentifierError
Trait Implementations
sourceimpl Clone for InvalidIdentifierError
impl Clone for InvalidIdentifierError
sourcefn clone(&self) -> InvalidIdentifierError
fn clone(&self) -> InvalidIdentifierError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for InvalidIdentifierError
impl Debug for InvalidIdentifierError
sourceimpl Default for InvalidIdentifierError
impl Default for InvalidIdentifierError
sourcefn default() -> InvalidIdentifierError
fn default() -> InvalidIdentifierError
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for InvalidIdentifierError
impl<'de> Deserialize<'de> for InvalidIdentifierError
sourcefn 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
sourceimpl PartialEq<InvalidIdentifierError> for InvalidIdentifierError
impl PartialEq<InvalidIdentifierError> for InvalidIdentifierError
sourcefn eq(&self, other: &InvalidIdentifierError) -> bool
fn eq(&self, other: &InvalidIdentifierError) -> bool
sourceimpl Serialize for InvalidIdentifierError
impl Serialize for InvalidIdentifierError
impl StructuralPartialEq for InvalidIdentifierError
Auto Trait Implementations
impl RefUnwindSafe for InvalidIdentifierError
impl Send for InvalidIdentifierError
impl Sync for InvalidIdentifierError
impl Unpin for InvalidIdentifierError
impl UnwindSafe for InvalidIdentifierError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more