pub enum AuthHandlerType {
Inbuilt,
Custom,
None,
}Expand description
§ConnectorType
Enum for current schema status. Defaults to idle
Variants§
Implementations§
Source§impl AuthHandlerType
impl AuthHandlerType
pub fn convert_from_string(value: String) -> Self
pub fn convert_to_string(&self) -> String
Trait Implementations§
Source§impl AsRef<str> for AuthHandlerType
impl AsRef<str> for AuthHandlerType
Source§impl Clone for AuthHandlerType
impl Clone for AuthHandlerType
Source§fn clone(&self) -> AuthHandlerType
fn clone(&self) -> AuthHandlerType
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 AuthHandlerType
impl Debug for AuthHandlerType
Source§impl Default for AuthHandlerType
impl Default for AuthHandlerType
Source§fn default() -> AuthHandlerType
fn default() -> AuthHandlerType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthHandlerType
impl<'de> Deserialize<'de> for AuthHandlerType
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 AuthHandlerType
impl Display for AuthHandlerType
impl Eq for AuthHandlerType
Source§impl<'_derivative_strum> From<&'_derivative_strum AuthHandlerType> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum AuthHandlerType> for &'static str
Source§fn from(x: &'_derivative_strum AuthHandlerType) -> &'static str
fn from(x: &'_derivative_strum AuthHandlerType) -> &'static str
Converts to this type from the input type.
Source§impl From<AuthHandlerType> for &'static str
impl From<AuthHandlerType> for &'static str
Source§fn from(x: AuthHandlerType) -> &'static str
fn from(x: AuthHandlerType) -> &'static str
Converts to this type from the input type.
Source§impl FromStr for AuthHandlerType
impl FromStr for AuthHandlerType
Source§impl PartialEq for AuthHandlerType
impl PartialEq for AuthHandlerType
Source§fn eq(&self, other: &AuthHandlerType) -> bool
fn eq(&self, other: &AuthHandlerType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AuthHandlerType
impl Serialize for AuthHandlerType
impl StructuralPartialEq for AuthHandlerType
Auto Trait Implementations§
impl Freeze for AuthHandlerType
impl RefUnwindSafe for AuthHandlerType
impl Send for AuthHandlerType
impl Sync for AuthHandlerType
impl Unpin for AuthHandlerType
impl UnsafeUnpin for AuthHandlerType
impl UnwindSafe for AuthHandlerType
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