mirror of
https://github.com/Llewellynvdm/exa.git
synced 2025-04-05 06:51:51 +00:00
Move this up
This commit is contained in:
parent
80d5c2ad6d
commit
a32b0dfb47
@ -322,6 +322,26 @@ impl<'a> Render<'a> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
pub struct Row {
|
||||||
|
|
||||||
|
/// Vector of cells to display.
|
||||||
|
///
|
||||||
|
/// Most of the rows will be used to display files' metadata, so this will
|
||||||
|
/// almost always be `Some`, containing a vector of cells. It will only be
|
||||||
|
/// `None` for a row displaying an attribute or error, neither of which
|
||||||
|
/// have cells.
|
||||||
|
pub cells: Option<TableRow>,
|
||||||
|
|
||||||
|
/// This file's name, in coloured output. The name is treated separately
|
||||||
|
/// from the other cells, as it never requires padding.
|
||||||
|
pub name: TextCell,
|
||||||
|
|
||||||
|
/// Information used to determine which symbols to display in a tree.
|
||||||
|
pub tree: TreeParams,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
pub struct TableIter<'a> {
|
pub struct TableIter<'a> {
|
||||||
table: Table<'a>,
|
table: Table<'a>,
|
||||||
tree_trunk: TreeTrunk,
|
tree_trunk: TreeTrunk,
|
||||||
@ -361,25 +381,6 @@ impl<'a> Iterator for TableIter<'a> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Row {
|
|
||||||
|
|
||||||
/// Vector of cells to display.
|
|
||||||
///
|
|
||||||
/// Most of the rows will be used to display files' metadata, so this will
|
|
||||||
/// almost always be `Some`, containing a vector of cells. It will only be
|
|
||||||
/// `None` for a row displaying an attribute or error, neither of which
|
|
||||||
/// have cells.
|
|
||||||
pub cells: Option<TableRow>,
|
|
||||||
|
|
||||||
/// This file's name, in coloured output. The name is treated separately
|
|
||||||
/// from the other cells, as it never requires padding.
|
|
||||||
pub name: TextCell,
|
|
||||||
|
|
||||||
/// Information used to determine which symbols to display in a tree.
|
|
||||||
pub tree: TreeParams,
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
pub struct Iter<'a> {
|
pub struct Iter<'a> {
|
||||||
tree_trunk: TreeTrunk,
|
tree_trunk: TreeTrunk,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user