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