pub trait FileDialogResults<SR: Clone + Debug + PartialEq> {
// Required methods
fn save_file_result(path: String) -> SR;
fn load_file_result(path: String) -> SR;
}
Required Methods§
fn save_file_result(path: String) -> SR
fn load_file_result(path: String) -> SR
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.