pub struct BuiltInModelCatalog {
pub models: Vec<BuiltInModelCatalogEntry>,
}Expand description
The running runtime’s complete catalog of well-known built-in model IDs, including supported models and additional IDs with built-in metadata.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§models: Vec<BuiltInModelCatalogEntry>Built-in model entries.
Trait Implementations§
Source§impl Clone for BuiltInModelCatalog
impl Clone for BuiltInModelCatalog
Source§fn clone(&self) -> BuiltInModelCatalog
fn clone(&self) -> BuiltInModelCatalog
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 BuiltInModelCatalog
impl Debug for BuiltInModelCatalog
Source§impl Default for BuiltInModelCatalog
impl Default for BuiltInModelCatalog
Source§fn default() -> BuiltInModelCatalog
fn default() -> BuiltInModelCatalog
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BuiltInModelCatalog
impl<'de> Deserialize<'de> for BuiltInModelCatalog
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 BuiltInModelCatalog
impl RefUnwindSafe for BuiltInModelCatalog
impl Send for BuiltInModelCatalog
impl Sync for BuiltInModelCatalog
impl Unpin for BuiltInModelCatalog
impl UnsafeUnpin for BuiltInModelCatalog
impl UnwindSafe for BuiltInModelCatalog
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