mirror of
https://codeberg.org/unspeaker/perch.git
synced 2025-12-07 01:56:45 +01:00
non-abbreviated function names
This commit is contained in:
parent
f4f38939d5
commit
a38d103d7d
3 changed files with 7 additions and 7 deletions
|
|
@ -38,13 +38,13 @@ impl Entry {
|
|||
path: path.into(),
|
||||
}))
|
||||
}
|
||||
pub fn is_dir (&self) -> bool {
|
||||
pub fn is_directory (&self) -> bool {
|
||||
matches!(&*self.info.read().unwrap(), Metadata::Directory { .. })
|
||||
}
|
||||
pub fn is_mus (&self) -> bool {
|
||||
pub fn is_music (&self) -> bool {
|
||||
matches!(&*self.info.read().unwrap(), Metadata::Music { .. })
|
||||
}
|
||||
pub fn is_img (&self) -> bool {
|
||||
pub fn is_image (&self) -> bool {
|
||||
matches!(&*self.info.read().unwrap(), Metadata::Image { .. })
|
||||
}
|
||||
pub fn hash (&self) -> Option<Arc<str>> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue