pub struct CredentialUpdateProperties {
pub user_name: Option<String>,
pub password: Option<String>,
pub description: Option<String>,
}Expand description
The properties of the Update credential
Fields§
§user_name: Option<String>Gets or sets the user name of the credential.
password: Option<String>Gets 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 CredentialUpdateProperties
impl Clone for CredentialUpdateProperties
Source§fn clone(&self) -> CredentialUpdateProperties
fn clone(&self) -> CredentialUpdateProperties
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 Debug for CredentialUpdateProperties
impl Debug for CredentialUpdateProperties
Source§impl Default for CredentialUpdateProperties
impl Default for CredentialUpdateProperties
Source§fn default() -> CredentialUpdateProperties
fn default() -> CredentialUpdateProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CredentialUpdateProperties
impl<'de> Deserialize<'de> for CredentialUpdateProperties
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
impl StructuralPartialEq for CredentialUpdateProperties
Auto Trait Implementations§
impl Freeze for CredentialUpdateProperties
impl RefUnwindSafe for CredentialUpdateProperties
impl Send for CredentialUpdateProperties
impl Sync for CredentialUpdateProperties
impl Unpin for CredentialUpdateProperties
impl UnwindSafe for CredentialUpdateProperties
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