pub struct AliasDetails {
pub account_alias: String,
pub auth_method_name: String,
pub json: Option<bool>,
}Fields§
§account_alias: StringAccount alias
auth_method_name: StringAuth method name
json: Option<bool>Set output format to JSON
Implementations§
Source§impl AliasDetails
impl AliasDetails
pub fn new(account_alias: String, auth_method_name: String) -> AliasDetails
Trait Implementations§
Source§impl Clone for AliasDetails
impl Clone for AliasDetails
Source§fn clone(&self) -> AliasDetails
fn clone(&self) -> AliasDetails
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 AliasDetails
impl Debug for AliasDetails
Source§impl Default for AliasDetails
impl Default for AliasDetails
Source§fn default() -> AliasDetails
fn default() -> AliasDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AliasDetails
impl<'de> Deserialize<'de> for AliasDetails
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 AliasDetails
impl PartialEq for AliasDetails
Source§fn eq(&self, other: &AliasDetails) -> bool
fn eq(&self, other: &AliasDetails) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AliasDetails
impl Serialize for AliasDetails
impl StructuralPartialEq for AliasDetails
Auto Trait Implementations§
impl Freeze for AliasDetails
impl RefUnwindSafe for AliasDetails
impl Send for AliasDetails
impl Sync for AliasDetails
impl Unpin for AliasDetails
impl UnsafeUnpin for AliasDetails
impl UnwindSafe for AliasDetails
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