1 2 3 4 5 6 7 8
pub mod language; pub mod vision; /// Represents a type that returns an ONNX model URL. pub trait ModelUrl { /// Returns the model URL associated with this model. fn fetch_url(&self) -> &'static str; }