1use ort::OrtError; 2 3use crate::detection::RustFacesError; 4 5impl From<OrtError> for RustFacesError { 6 fn from(err: OrtError) -> Self { 7 RustFacesError::InferenceError(err.to_string()) 8 } 9}