rust_macios/core_ml/
ml_model.rs

1use crate::{
2    object,
3    objective_c_runtime::{macros::interface_impl, traits::PNSObject},
4};
5
6object! {
7    /// An encapsulation of all the details of your machine learning model.
8    unsafe pub struct MLModel;
9}
10
11#[interface_impl(NSObject)]
12impl MLModel {}