Enum scl_core::auth::structs::AuthMethod
source · pub enum AuthMethod {
Offline {
player_name: String,
uuid: String,
},
Mojang {
access_token: Password,
uuid: String,
player_name: String,
head_skin: Vec<u8>,
hat_skin: Vec<u8>,
},
Microsoft {
access_token: Password,
refresh_token: Password,
uuid: String,
xuid: String,
player_name: String,
head_skin: Vec<u8>,
hat_skin: Vec<u8>,
},
AuthlibInjector {
api_location: String,
server_name: String,
server_homepage: String,
server_meta: String,
access_token: Password,
uuid: String,
player_name: String,
head_skin: Vec<u8>,
hat_skin: Vec<u8>,
},
}
Expand description
账户类型枚举,需要提供一个账户种类方可启动游戏
Variants§
Offline
Fields
离线账户登录
Mojang
Fields
Mojang (Yggdrasil) 账户登录
Microsoft
Fields
微软账户
AuthlibInjector
Fields
外置登录(Authlib-Injector)
Trait Implementations§
source§impl Clone for AuthMethod
impl Clone for AuthMethod
source§fn clone(&self) -> AuthMethod
fn clone(&self) -> AuthMethod
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 AuthMethod
impl Debug for AuthMethod
source§impl<'de> Deserialize<'de> for AuthMethod
impl<'de> Deserialize<'de> for AuthMethod
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<AuthMethod> for AuthMethod
impl PartialEq<AuthMethod> for AuthMethod
source§fn eq(&self, other: &AuthMethod) -> bool
fn eq(&self, other: &AuthMethod) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for AuthMethod
impl Serialize for AuthMethod
impl Eq for AuthMethod
impl StructuralEq for AuthMethod
impl StructuralPartialEq for AuthMethod
Auto Trait Implementations§
impl RefUnwindSafe for AuthMethod
impl Send for AuthMethod
impl Sync for AuthMethod
impl Unpin for AuthMethod
impl UnwindSafe for AuthMethod
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.