pub trait Ocr {
// Required methods
fn execute(&mut self);
fn set_args(&mut self, args: Vec<String>) -> &mut Self;
fn set_input_path(&mut self, path: String) -> &mut Self;
fn set_output_path(&mut self, path: String) -> &mut Self;
}
Required Methods§
fn execute(&mut self)
fn set_args(&mut self, args: Vec<String>) -> &mut Self
fn set_input_path(&mut self, path: String) -> &mut Self
fn set_output_path(&mut self, path: String) -> &mut Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.