pub struct AccountGetCurrentAuthResult {
pub auth_errors: Option<Vec<String>>,
pub auth_info: Option<Value>,
}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<Value>Current authentication information, if authenticated
Trait Implementations§
Source§impl Clone for AccountGetCurrentAuthResult
impl Clone for AccountGetCurrentAuthResult
Source§fn clone(&self) -> AccountGetCurrentAuthResult
fn clone(&self) -> AccountGetCurrentAuthResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AccountGetCurrentAuthResult
impl Debug for AccountGetCurrentAuthResult
Source§impl Default for AccountGetCurrentAuthResult
impl Default for AccountGetCurrentAuthResult
Source§fn default() -> AccountGetCurrentAuthResult
fn default() -> AccountGetCurrentAuthResult
Returns the “default value” for a type. Read more
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