pub struct FoundryListResponseModel {Show 17 fields
pub name: String,
pub display_name: String,
pub model_type: String,
pub provider_type: String,
pub uri: String,
pub version: String,
pub prompt_template: Value,
pub publisher: String,
pub task: String,
pub runtime: ModelRuntime,
pub file_size_mb: i32,
pub model_settings: Value,
pub alias: String,
pub supports_tool_calling: bool,
pub license: String,
pub license_description: String,
pub parent_model_uri: String,
}Expand description
Response model for listing models.
Fields§
§name: String§display_name: String§model_type: String§provider_type: String§uri: String§version: String§prompt_template: Value§publisher: String§task: String§runtime: ModelRuntime§file_size_mb: i32§model_settings: Value§alias: String§supports_tool_calling: bool§license: String§license_description: String§parent_model_uri: StringTrait Implementations§
Source§impl Clone for FoundryListResponseModel
impl Clone for FoundryListResponseModel
Source§fn clone(&self) -> FoundryListResponseModel
fn clone(&self) -> FoundryListResponseModel
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 FoundryListResponseModel
impl Debug for FoundryListResponseModel
Source§impl<'de> Deserialize<'de> for FoundryListResponseModel
impl<'de> Deserialize<'de> for FoundryListResponseModel
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 FoundryListResponseModel
impl RefUnwindSafe for FoundryListResponseModel
impl Send for FoundryListResponseModel
impl Sync for FoundryListResponseModel
impl Unpin for FoundryListResponseModel
impl UnwindSafe for FoundryListResponseModel
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more