pub enum ExtensionCategory {
Show 19 variants
InferenceEngine,
WireDialect,
ThreadStore,
CheckpointStore,
MemoryStore,
EmbeddingProvider,
ContextProvider,
ContextPlanner,
ToolProvider,
PolicyContributor,
SandboxBackend,
EventSink,
TaskExecutor,
StatusSegment,
PaletteSource,
SpeechTranscriber,
SpeechSynthesizer,
MediaGenerator,
Other(String),
}Expand description
Extension category in distribution metadata. Serializes as a plain
kebab-case string; unknown category names deserialize into
ExtensionCategory::Other so new crates can declare novel categories
(e.g. inference-router) without breaking older tooling.
Variants§
InferenceEngine
WireDialect
ThreadStore
CheckpointStore
MemoryStore
EmbeddingProvider
ContextProvider
ContextPlanner
ToolProvider
PolicyContributor
SandboxBackend
EventSink
TaskExecutor
StatusSegment
PaletteSource
SpeechTranscriber
SpeechSynthesizer
MediaGenerator
Other(String)
Implementations§
Trait Implementations§
Source§impl Clone for ExtensionCategory
impl Clone for ExtensionCategory
Source§fn clone(&self) -> ExtensionCategory
fn clone(&self) -> ExtensionCategory
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 ExtensionCategory
impl Debug for ExtensionCategory
Source§impl<'de> Deserialize<'de> for ExtensionCategory
impl<'de> Deserialize<'de> for ExtensionCategory
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ExtensionCategory
Source§impl Ord for ExtensionCategory
impl Ord for ExtensionCategory
Source§fn cmp(&self, other: &ExtensionCategory) -> Ordering
fn cmp(&self, other: &ExtensionCategory) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ExtensionCategory
impl PartialEq for ExtensionCategory
Source§fn eq(&self, other: &ExtensionCategory) -> bool
fn eq(&self, other: &ExtensionCategory) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ExtensionCategory
impl PartialOrd for ExtensionCategory
Source§impl Serialize for ExtensionCategory
impl Serialize for ExtensionCategory
impl StructuralPartialEq for ExtensionCategory
Auto Trait Implementations§
impl Freeze for ExtensionCategory
impl RefUnwindSafe for ExtensionCategory
impl Send for ExtensionCategory
impl Sync for ExtensionCategory
impl Unpin for ExtensionCategory
impl UnsafeUnpin for ExtensionCategory
impl UnwindSafe for ExtensionCategory
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.