pub enum McpServerConfigAuthProviderType {
Unspecified,
GoogleCredentials,
Unknown(String),
}Expand description
antigravity.localharness.McpServerConfig.AuthProviderType
Variants§
Unspecified
GoogleCredentials
Unknown(String)
A value this crate does not know about yet.
The harness is versioned independently of this crate, so an unrecognised enum value is treated as forward compatibility rather than as a decode error.
Implementations§
Trait Implementations§
Source§impl Clone for McpServerConfigAuthProviderType
impl Clone for McpServerConfigAuthProviderType
Source§fn clone(&self) -> McpServerConfigAuthProviderType
fn clone(&self) -> McpServerConfigAuthProviderType
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 Default for McpServerConfigAuthProviderType
impl Default for McpServerConfigAuthProviderType
Source§fn default() -> McpServerConfigAuthProviderType
fn default() -> McpServerConfigAuthProviderType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for McpServerConfigAuthProviderType
impl<'de> Deserialize<'de> for McpServerConfigAuthProviderType
Source§fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
impl Eq for McpServerConfigAuthProviderType
impl StructuralPartialEq for McpServerConfigAuthProviderType
Auto Trait Implementations§
impl Freeze for McpServerConfigAuthProviderType
impl RefUnwindSafe for McpServerConfigAuthProviderType
impl Send for McpServerConfigAuthProviderType
impl Sync for McpServerConfigAuthProviderType
impl Unpin for McpServerConfigAuthProviderType
impl UnsafeUnpin for McpServerConfigAuthProviderType
impl UnwindSafe for McpServerConfigAuthProviderType
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