pub struct PatchMutualAuthenticationParams {
pub mutual_authentication_id: String,
pub mutual_authentication: Option<MutualAuthentication>,
}
Expand description
struct for passing parameters to the method patch_mutual_authentication
Fields§
§mutual_authentication_id: String
Alphanumeric string identifying a mutual authentication.
mutual_authentication: Option<MutualAuthentication>
Trait Implementations§
Source§impl Clone for PatchMutualAuthenticationParams
impl Clone for PatchMutualAuthenticationParams
Source§fn clone(&self) -> PatchMutualAuthenticationParams
fn clone(&self) -> PatchMutualAuthenticationParams
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 PatchMutualAuthenticationParams
impl Default for PatchMutualAuthenticationParams
Source§fn default() -> PatchMutualAuthenticationParams
fn default() -> PatchMutualAuthenticationParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PatchMutualAuthenticationParams
impl RefUnwindSafe for PatchMutualAuthenticationParams
impl Send for PatchMutualAuthenticationParams
impl Sync for PatchMutualAuthenticationParams
impl Unpin for PatchMutualAuthenticationParams
impl UnwindSafe for PatchMutualAuthenticationParams
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