pub struct AuthenticateMode {
pub mode: Option<AuthenticateModeOption>,
}Expand description
The authentication mode settings for the ceremony.
JSON schema
{
"title": "AuthenticateMode",
"description": "The authentication mode settings for the ceremony.",
"type": "object",
"properties": {
"mode": {
"$ref": "#/components/schemas/AuthenticateModeOption"
}
},
"x-stainless-model": "client_auth.authenticate_mode"
}Fields§
§mode: Option<AuthenticateModeOption>Trait Implementations§
Source§impl Clone for AuthenticateMode
impl Clone for AuthenticateMode
Source§fn clone(&self) -> AuthenticateMode
fn clone(&self) -> AuthenticateMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AuthenticateMode
impl Debug for AuthenticateMode
Source§impl Default for AuthenticateMode
impl Default for AuthenticateMode
Source§impl<'de> Deserialize<'de> for AuthenticateMode
impl<'de> Deserialize<'de> for AuthenticateMode
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 From<&AuthenticateMode> for AuthenticateMode
impl From<&AuthenticateMode> for AuthenticateMode
Source§fn from(value: &AuthenticateMode) -> Self
fn from(value: &AuthenticateMode) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AuthenticateMode
impl RefUnwindSafe for AuthenticateMode
impl Send for AuthenticateMode
impl Sync for AuthenticateMode
impl Unpin for AuthenticateMode
impl UnsafeUnpin for AuthenticateMode
impl UnwindSafe for AuthenticateMode
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