pub struct ProviderModels {
pub provider_id: String,
pub provider_label: String,
pub models: Vec<ModelInfo>,
}Expand description
Models grouped by provider, with configuration status
Fields§
§provider_id: StringProvider identifier
provider_label: StringHuman-readable provider name
models: Vec<ModelInfo>Available models for this provider
Trait Implementations§
Source§impl Clone for ProviderModels
impl Clone for ProviderModels
Source§fn clone(&self) -> ProviderModels
fn clone(&self) -> ProviderModels
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 ProviderModels
impl Debug for ProviderModels
Source§impl<'de> Deserialize<'de> for ProviderModels
impl<'de> Deserialize<'de> for ProviderModels
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 ProviderModels
impl RefUnwindSafe for ProviderModels
impl Send for ProviderModels
impl Sync for ProviderModels
impl Unpin for ProviderModels
impl UnsafeUnpin for ProviderModels
impl UnwindSafe for ProviderModels
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