pub struct ModelDetails {
pub format: Option<String>,
pub family: Option<String>,
pub parameter_size: Option<String>,
pub quantization_level: Option<String>,
}Expand description
Model details.
Fields§
§format: Option<String>Format.
family: Option<String>Model family.
parameter_size: Option<String>Parameter size.
quantization_level: Option<String>Quantization level.
Trait Implementations§
Source§impl Clone for ModelDetails
impl Clone for ModelDetails
Source§fn clone(&self) -> ModelDetails
fn clone(&self) -> ModelDetails
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 ModelDetails
impl Debug for ModelDetails
Source§impl<'de> Deserialize<'de> for ModelDetails
impl<'de> Deserialize<'de> for ModelDetails
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 ModelDetails
impl RefUnwindSafe for ModelDetails
impl Send for ModelDetails
impl Sync for ModelDetails
impl Unpin for ModelDetails
impl UnwindSafe for ModelDetails
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