26 lines
417 B
Rust
26 lines
417 B
Rust
use std::path::PathBuf;
|
|
|
|
use libimagstore::store::Entry;
|
|
|
|
pub trait IsInDiary {
|
|
|
|
fn is_in_diary(&self, name: &str) -> bool;
|
|
|
|
}
|
|
|
|
impl IsInDiary for Entry {
|
|
|
|
fn is_in_diary(&self, name: &str) -> bool {
|
|
self.get_location().is_in_diary(name)
|
|
}
|
|
|
|
}
|
|
|
|
impl IsInDiary for PathBuf {
|
|
|
|
fn is_in_diary(&self, name: &str) -> bool {
|
|
self.to_str().map(|s| s.contains(name)).unwrap_or(false)
|
|
}
|
|
|
|
}
|
|
|