pub struct ModelInfo {
pub success: bool,
pub id: u32,
pub model_parameters: ModelParameters,
pub project: ProjectInfo,
}
Expand description
Response containing model information and parameters.
Received after sending a HelloMessage
, contains essential information
about the model’s configuration and capabilities.
Fields§
§success: bool
Indicates if the model initialization was successful
id: u32
Message identifier matching the request
model_parameters: ModelParameters
Model parameters including input size, type, and other configuration
project: ProjectInfo
Project information from Edge Impulse
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ModelInfo
impl<'de> Deserialize<'de> for ModelInfo
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 ModelInfo
impl RefUnwindSafe for ModelInfo
impl Send for ModelInfo
impl Sync for ModelInfo
impl Unpin for ModelInfo
impl UnwindSafe for ModelInfo
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