pub struct ListModelsResponse {
pub object: String,
pub data: Vec<Model>,
}
Expand description
Lists the currently available models, and provides basic information about each one such as the owner and availability.
Fields§
§object: String
§data: Vec<Model>
Trait Implementations§
Source§impl Debug for ListModelsResponse
impl Debug for ListModelsResponse
Source§impl<'de> Deserialize<'de> for ListModelsResponse
impl<'de> Deserialize<'de> for ListModelsResponse
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 ListModelsResponse
impl RefUnwindSafe for ListModelsResponse
impl Send for ListModelsResponse
impl Sync for ListModelsResponse
impl Unpin for ListModelsResponse
impl UnwindSafe for ListModelsResponse
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