pub struct AIFramework {
pub name: String,
pub compatibility: CompatibilityLevel,
pub performance_estimate: PerformanceLevel,
pub requirements_met: bool,
pub notes: String,
}
Fields§
§name: String
§compatibility: CompatibilityLevel
§performance_estimate: PerformanceLevel
§requirements_met: bool
§notes: String
Trait Implementations§
Source§impl Debug for AIFramework
impl Debug for AIFramework
Source§impl<'de> Deserialize<'de> for AIFramework
impl<'de> Deserialize<'de> for AIFramework
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 AIFramework
impl RefUnwindSafe for AIFramework
impl Send for AIFramework
impl Sync for AIFramework
impl Unpin for AIFramework
impl UnwindSafe for AIFramework
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