pub enum ProviderCategory {
Llm,
Mcp,
Local,
}Expand description
Category of provider service.
Variants§
Llm
LLM inference providers (Anthropic, OpenAI, etc.)
Mcp
MCP service providers (Neo4j, GitHub, etc.)
Local
Local model runners (Ollama)
Trait Implementations§
Source§impl Clone for ProviderCategory
impl Clone for ProviderCategory
Source§fn clone(&self) -> ProviderCategory
fn clone(&self) -> ProviderCategory
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 ProviderCategory
impl Debug for ProviderCategory
Source§impl Hash for ProviderCategory
impl Hash for ProviderCategory
Source§impl PartialEq for ProviderCategory
impl PartialEq for ProviderCategory
impl Copy for ProviderCategory
impl Eq for ProviderCategory
impl StructuralPartialEq for ProviderCategory
Auto Trait Implementations§
impl Freeze for ProviderCategory
impl RefUnwindSafe for ProviderCategory
impl Send for ProviderCategory
impl Sync for ProviderCategory
impl Unpin for ProviderCategory
impl UnsafeUnpin for ProviderCategory
impl UnwindSafe for ProviderCategory
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