pub struct ModelsDevResponse {
pub providers: HashMap<String, Provider>,
}Expand description
Top-level response structure from the models.dev API.
This is a map where keys are provider IDs and values are provider information.
Fields§
§providers: HashMap<String, Provider>Provider information mapped by provider ID.
Implementations§
Source§impl ModelsDevResponse
impl ModelsDevResponse
Sourcepub fn providers_vec(&self) -> Vec<Provider>
pub fn providers_vec(&self) -> Vec<Provider>
Get the providers as a vector.
Trait Implementations§
Source§impl Clone for ModelsDevResponse
impl Clone for ModelsDevResponse
Source§fn clone(&self) -> ModelsDevResponse
fn clone(&self) -> ModelsDevResponse
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 ModelsDevResponse
impl Debug for ModelsDevResponse
Source§impl<'de> Deserialize<'de> for ModelsDevResponse
impl<'de> Deserialize<'de> for ModelsDevResponse
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 ModelsDevResponse
impl RefUnwindSafe for ModelsDevResponse
impl Send for ModelsDevResponse
impl Sync for ModelsDevResponse
impl Unpin for ModelsDevResponse
impl UnwindSafe for ModelsDevResponse
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