1
0
Fork 0
mirror of synced 2024-05-19 03:43:00 +12:00
czkawka/czkawka_core/src/common_traits.rs

10 lines
199 B
Rust
Raw Normal View History

2020-09-27 03:52:13 +13:00
pub trait DebugPrint {
fn debug_print(&self);
}
pub trait SaveResults {
fn save_results_to_file(&mut self, file_name: &str) -> bool;
}
pub trait PrintResults {
fn print_results(&self);
}