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
Object Safety§
This trait is not object safe.