pub struct CredentialCreateOrUpdateProperties {
pub user_name: String,
pub password: String,
pub description: Option<String>,
}Expand description
The properties of the create credential operation.
Fields§
§user_name: StringGets or sets the user name of the credential.
password: StringGets or sets the password of the credential.
description: Option<String>Gets or sets the description of the credential.
Implementations§
Trait Implementations§
Source§impl Clone for CredentialCreateOrUpdateProperties
impl Clone for CredentialCreateOrUpdateProperties
Source§fn clone(&self) -> CredentialCreateOrUpdateProperties
fn clone(&self) -> CredentialCreateOrUpdateProperties
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<'de> Deserialize<'de> for CredentialCreateOrUpdateProperties
impl<'de> Deserialize<'de> for CredentialCreateOrUpdateProperties
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 CredentialCreateOrUpdateProperties
impl PartialEq for CredentialCreateOrUpdateProperties
Source§fn eq(&self, other: &CredentialCreateOrUpdateProperties) -> bool
fn eq(&self, other: &CredentialCreateOrUpdateProperties) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CredentialCreateOrUpdateProperties
Auto Trait Implementations§
impl Freeze for CredentialCreateOrUpdateProperties
impl RefUnwindSafe for CredentialCreateOrUpdateProperties
impl Send for CredentialCreateOrUpdateProperties
impl Sync for CredentialCreateOrUpdateProperties
impl Unpin for CredentialCreateOrUpdateProperties
impl UnwindSafe for CredentialCreateOrUpdateProperties
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