pub struct ModelRecommendation {
pub name: String,
pub parameter_count: String,
pub memory_required_gb: f64,
pub feasible: bool,
pub performance_estimate: PerformanceLevel,
}
Fields§
§name: String
§parameter_count: String
§memory_required_gb: f64
§feasible: bool
§performance_estimate: PerformanceLevel
Trait Implementations§
Source§impl Debug for ModelRecommendation
impl Debug for ModelRecommendation
Source§impl<'de> Deserialize<'de> for ModelRecommendation
impl<'de> Deserialize<'de> for ModelRecommendation
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 ModelRecommendation
impl RefUnwindSafe for ModelRecommendation
impl Send for ModelRecommendation
impl Sync for ModelRecommendation
impl Unpin for ModelRecommendation
impl UnwindSafe for ModelRecommendation
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