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 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 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 for InvalidIdentifierError
impl PartialEq for InvalidIdentifierError
Source§impl Serialize for InvalidIdentifierError
impl Serialize for InvalidIdentifierError
impl StructuralPartialEq for InvalidIdentifierError
Auto Trait Implementations§
impl Freeze for InvalidIdentifierError
impl RefUnwindSafe for InvalidIdentifierError
impl Send for InvalidIdentifierError
impl Sync for InvalidIdentifierError
impl Unpin for InvalidIdentifierError
impl UnwindSafe for InvalidIdentifierError
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