aboutsummaryrefslogtreecommitdiffstats
path: root/src/listing.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/listing.rs')
-rw-r--r--src/listing.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/listing.rs b/src/listing.rs
index a9d2e3a..bd82c94 100644
--- a/src/listing.rs
+++ b/src/listing.rs
@@ -121,7 +121,7 @@ impl Entry {
last_modification_date: Option<SystemTime>,
symlink_info: Option<String>,
) -> Self {
- Entry {
+ Self {
name,
entry_type,
link,
@@ -153,7 +153,7 @@ pub struct Breadcrumb {
impl Breadcrumb {
fn new(name: String, link: String) -> Self {
- Breadcrumb { name, link }
+ Self { name, link }
}
}