pub struct AccountGetCurrentAuthResult {
pub auth_errors: Option<Vec<String>>,
pub auth_info: Option<AuthInfo>,
}Expand description
Current authentication state
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§auth_errors: Option<Vec<String>>Authentication errors from the last auth attempt, if any
auth_info: Option<AuthInfo>Current authentication information, if authenticated
Trait Implementations§
Source§impl Clone for AccountGetCurrentAuthResult
impl Clone for AccountGetCurrentAuthResult
Source§impl Debug for AccountGetCurrentAuthResult
impl Debug for AccountGetCurrentAuthResult
Source§impl<'de> Deserialize<'de> for AccountGetCurrentAuthResult
impl<'de> Deserialize<'de> for AccountGetCurrentAuthResult
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
Auto Trait Implementations§
impl Freeze for AccountGetCurrentAuthResult
impl RefUnwindSafe for AccountGetCurrentAuthResult
impl Send for AccountGetCurrentAuthResult
impl Sync for AccountGetCurrentAuthResult
impl Unpin for AccountGetCurrentAuthResult
impl UnsafeUnpin for AccountGetCurrentAuthResult
impl UnwindSafe for AccountGetCurrentAuthResult
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