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
Mojang (Yggdrasil) 账户登录
Fields
Microsoft
微软账户
Fields
AuthlibInjector
外置登录(Authlib-Injector)
Fields
Trait Implementations§
Source§impl Clone for AuthMethod
impl Clone for AuthMethod
Source§fn clone(&self) -> AuthMethod
fn clone(&self) -> AuthMethod
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 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 for AuthMethod
impl PartialEq for AuthMethod
Source§impl Serialize for AuthMethod
impl Serialize for AuthMethod
impl Eq for AuthMethod
impl StructuralPartialEq for AuthMethod
Auto Trait Implementations§
impl Freeze for AuthMethod
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.