pub enum AuthenticateModeOption {
LoginOrSignUp,
NoSignup,
}Expand description
Whether to allow sign-up during authentication.
JSON schema
{
"title": "AuthenticateModeOption",
"description": "Whether to allow sign-up during authentication.",
"type": "string",
"enum": [
"login-or-sign-up",
"no-signup"
],
"x-stainless-model": "client_auth.authenticate_mode_option"
}Variants§
Trait Implementations§
Source§impl Clone for AuthenticateModeOption
impl Clone for AuthenticateModeOption
Source§fn clone(&self) -> AuthenticateModeOption
fn clone(&self) -> AuthenticateModeOption
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 moreimpl Copy for AuthenticateModeOption
Source§impl Debug for AuthenticateModeOption
impl Debug for AuthenticateModeOption
Source§impl<'de> Deserialize<'de> for AuthenticateModeOption
impl<'de> Deserialize<'de> for AuthenticateModeOption
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 Display for AuthenticateModeOption
impl Display for AuthenticateModeOption
impl Eq for AuthenticateModeOption
Source§impl From<&AuthenticateModeOption> for AuthenticateModeOption
impl From<&AuthenticateModeOption> for AuthenticateModeOption
Source§fn from(value: &AuthenticateModeOption) -> Self
fn from(value: &AuthenticateModeOption) -> Self
Converts to this type from the input type.
Source§impl FromStr for AuthenticateModeOption
impl FromStr for AuthenticateModeOption
Source§impl Hash for AuthenticateModeOption
impl Hash for AuthenticateModeOption
Source§impl Ord for AuthenticateModeOption
impl Ord for AuthenticateModeOption
Source§fn cmp(&self, other: &AuthenticateModeOption) -> Ordering
fn cmp(&self, other: &AuthenticateModeOption) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AuthenticateModeOption
impl PartialEq for AuthenticateModeOption
Source§fn eq(&self, other: &AuthenticateModeOption) -> bool
fn eq(&self, other: &AuthenticateModeOption) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AuthenticateModeOption
impl PartialOrd for AuthenticateModeOption
Source§impl Serialize for AuthenticateModeOption
impl Serialize for AuthenticateModeOption
impl StructuralPartialEq for AuthenticateModeOption
Source§impl TryFrom<&String> for AuthenticateModeOption
impl TryFrom<&String> for AuthenticateModeOption
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for AuthenticateModeOption
impl TryFrom<&str> for AuthenticateModeOption
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for AuthenticateModeOption
impl TryFrom<String> for AuthenticateModeOption
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for AuthenticateModeOption
impl RefUnwindSafe for AuthenticateModeOption
impl Send for AuthenticateModeOption
impl Sync for AuthenticateModeOption
impl Unpin for AuthenticateModeOption
impl UnsafeUnpin for AuthenticateModeOption
impl UnwindSafe for AuthenticateModeOption
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