Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions module/core/format_tools/src/format/print.rs
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,13 @@ mod private
#[ derive( Debug, Default ) ]
pub struct RowDescriptor
{
/// Index of the row.
pub irow : usize,
/// Height of the row.
pub height : usize,
/// Type of the line: header or regular.
pub typ : LineType,
/// Visibility of the row.
pub vis : bool,
}

Expand All @@ -240,8 +244,11 @@ mod private
#[ derive( Debug, Default ) ]
pub struct ColDescriptor< 'label >
{
/// Index of the column.
pub icol : usize,
/// Column width.
pub width : usize,
/// Label of the column.
pub label : &'label str,
}

Expand Down
Loading