mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-23 12:32:00 +00:00
The Row struct's fields don't need to be pub
This commit is contained in:
parent
8139cfedea
commit
571be76454
@ -56,12 +56,12 @@ impl Details {
|
||||
}
|
||||
|
||||
struct Row {
|
||||
pub depth: usize,
|
||||
pub cells: Vec<Cell>,
|
||||
pub name: String,
|
||||
pub last: bool,
|
||||
pub attrs: Vec<Attribute>,
|
||||
pub children: bool,
|
||||
depth: usize,
|
||||
cells: Vec<Cell>,
|
||||
name: String,
|
||||
last: bool,
|
||||
attrs: Vec<Attribute>,
|
||||
children: bool,
|
||||
}
|
||||
|
||||
type ColumnInfo = (usize, Alignment);
|
||||
|
Loading…
Reference in New Issue
Block a user