pub struct ModelsGetBuiltInCatalogResult {
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 ModelsGetBuiltInCatalogResult
impl Clone for ModelsGetBuiltInCatalogResult
Source§fn clone(&self) -> ModelsGetBuiltInCatalogResult
fn clone(&self) -> ModelsGetBuiltInCatalogResult
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 ModelsGetBuiltInCatalogResult
impl Default for ModelsGetBuiltInCatalogResult
Source§fn default() -> ModelsGetBuiltInCatalogResult
fn default() -> ModelsGetBuiltInCatalogResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ModelsGetBuiltInCatalogResult
impl<'de> Deserialize<'de> for ModelsGetBuiltInCatalogResult
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 ModelsGetBuiltInCatalogResult
impl RefUnwindSafe for ModelsGetBuiltInCatalogResult
impl Send for ModelsGetBuiltInCatalogResult
impl Sync for ModelsGetBuiltInCatalogResult
impl Unpin for ModelsGetBuiltInCatalogResult
impl UnsafeUnpin for ModelsGetBuiltInCatalogResult
impl UnwindSafe for ModelsGetBuiltInCatalogResult
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