pub enum ApiKeyAuthInfoType {
ApiKey,
}Expand description
API-key authentication for non-GitHub LLM providers (e.g. when running BYOM-style).
Variants§
ApiKey
Trait Implementations§
Source§impl Clone for ApiKeyAuthInfoType
impl Clone for ApiKeyAuthInfoType
Source§fn clone(&self) -> ApiKeyAuthInfoType
fn clone(&self) -> ApiKeyAuthInfoType
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 ApiKeyAuthInfoType
impl Debug for ApiKeyAuthInfoType
Source§impl Default for ApiKeyAuthInfoType
impl Default for ApiKeyAuthInfoType
Source§fn default() -> ApiKeyAuthInfoType
fn default() -> ApiKeyAuthInfoType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApiKeyAuthInfoType
impl<'de> Deserialize<'de> for ApiKeyAuthInfoType
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
impl Eq for ApiKeyAuthInfoType
Source§impl PartialEq for ApiKeyAuthInfoType
impl PartialEq for ApiKeyAuthInfoType
Source§fn eq(&self, other: &ApiKeyAuthInfoType) -> bool
fn eq(&self, other: &ApiKeyAuthInfoType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ApiKeyAuthInfoType
impl Serialize for ApiKeyAuthInfoType
impl StructuralPartialEq for ApiKeyAuthInfoType
Auto Trait Implementations§
impl Freeze for ApiKeyAuthInfoType
impl RefUnwindSafe for ApiKeyAuthInfoType
impl Send for ApiKeyAuthInfoType
impl Sync for ApiKeyAuthInfoType
impl Unpin for ApiKeyAuthInfoType
impl UnsafeUnpin for ApiKeyAuthInfoType
impl UnwindSafe for ApiKeyAuthInfoType
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