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