pub struct AuthStatus {
pub mac: String,
pub authenticated: bool,
pub competing: bool,
pub connected: bool,
pub message: String,
pub server_info: ServerInfo,
pub fail: String,
}
Fields§
§mac: String
§authenticated: bool
§competing: bool
§connected: bool
§message: String
§server_info: ServerInfo
§fail: String
Trait Implementations§
Source§impl Clone for AuthStatus
impl Clone for AuthStatus
Source§fn clone(&self) -> AuthStatus
fn clone(&self) -> AuthStatus
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 AuthStatus
impl Debug for AuthStatus
Source§impl Default for AuthStatus
impl Default for AuthStatus
Source§fn default() -> AuthStatus
fn default() -> AuthStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthStatuswhere
AuthStatus: Default,
impl<'de> Deserialize<'de> for AuthStatuswhere
AuthStatus: Default,
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 AuthStatus
impl PartialEq for AuthStatus
Source§impl Serialize for AuthStatus
impl Serialize for AuthStatus
impl StructuralPartialEq for AuthStatus
Auto Trait Implementations§
impl Freeze for AuthStatus
impl RefUnwindSafe for AuthStatus
impl Send for AuthStatus
impl Sync for AuthStatus
impl Unpin for AuthStatus
impl UnwindSafe for AuthStatus
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