Skip to content

Commit

Permalink
Remove pub modifiers from Entry struct fields
Browse files Browse the repository at this point in the history
  • Loading branch information
aleury committed Aug 24, 2024
1 parent d284bd7 commit a278372
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ pub fn list_entries(path: &str) -> std::io::Result<Vec<Entry>> {

#[derive(Debug, Eq, PartialEq, Ord, PartialOrd)]
pub struct Entry {
pub size: u64,
pub path: PathBuf,
size: u64,
path: PathBuf,
}

impl Entry {
Expand Down

0 comments on commit a278372

Please sign in to comment.