pub enum AuthScheme {
Oauth1,
Oauth2,
ApiKey,
BearerToken,
Basic,
NoAuth,
Snowflake,
CalcomAuth,
BillcomAuth,
ComposioLink,
BasicWithJwt,
GoogleServiceAccount,
}Expand description
Authentication schemes supported by toolkits
Variants§
Oauth1
OAuth 1.0 authentication
Oauth2
OAuth 2.0 authentication
ApiKey
API key authentication
BearerToken
Bearer token authentication
Basic
HTTP Basic authentication
NoAuth
No authentication required
Snowflake
Snowflake authentication
CalcomAuth
Cal.com authentication
BillcomAuth
Bill.com authentication
ComposioLink
Composio Link authentication
BasicWithJwt
Basic authentication with JWT
GoogleServiceAccount
Google Service Account authentication
Trait Implementations§
Source§impl Clone for AuthScheme
impl Clone for AuthScheme
Source§fn clone(&self) -> AuthScheme
fn clone(&self) -> AuthScheme
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 Debug for AuthScheme
impl Debug for AuthScheme
Source§impl<'de> Deserialize<'de> for AuthScheme
impl<'de> Deserialize<'de> for AuthScheme
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
Auto Trait Implementations§
impl Freeze for AuthScheme
impl RefUnwindSafe for AuthScheme
impl Send for AuthScheme
impl Sync for AuthScheme
impl Unpin for AuthScheme
impl UnsafeUnpin for AuthScheme
impl UnwindSafe for AuthScheme
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