pub struct CreateServiceSpecificCredentialResponse {
pub service_specific_credential: Option<ServiceSpecificCredential>,
}Fields§
§service_specific_credential: Option<ServiceSpecificCredential>A structure that contains information about the newly created service-specific credential.
This is the only time that the password for this credential set is available. It cannot be recovered later. Instead, you must reset the password with ResetServiceSpecificCredential.
Trait Implementations§
Source§impl Clone for CreateServiceSpecificCredentialResponse
impl Clone for CreateServiceSpecificCredentialResponse
Source§fn clone(&self) -> CreateServiceSpecificCredentialResponse
fn clone(&self) -> CreateServiceSpecificCredentialResponse
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 Default for CreateServiceSpecificCredentialResponse
impl Default for CreateServiceSpecificCredentialResponse
Source§fn default() -> CreateServiceSpecificCredentialResponse
fn default() -> CreateServiceSpecificCredentialResponse
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateServiceSpecificCredentialResponse
impl PartialEq for CreateServiceSpecificCredentialResponse
Source§fn eq(&self, other: &CreateServiceSpecificCredentialResponse) -> bool
fn eq(&self, other: &CreateServiceSpecificCredentialResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateServiceSpecificCredentialResponse
Auto Trait Implementations§
impl Freeze for CreateServiceSpecificCredentialResponse
impl RefUnwindSafe for CreateServiceSpecificCredentialResponse
impl Send for CreateServiceSpecificCredentialResponse
impl Sync for CreateServiceSpecificCredentialResponse
impl Unpin for CreateServiceSpecificCredentialResponse
impl UnwindSafe for CreateServiceSpecificCredentialResponse
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