Skip to content

Commit

Permalink
Add documentation to format_tools (#1501)
Browse files Browse the repository at this point in the history
  • Loading branch information
InAnYan authored Dec 4, 2024
1 parent 958c514 commit 2d5382e
Showing 1 changed file with 7 additions and 0 deletions.
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

0 comments on commit 2d5382e

Please sign in to comment.