We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
format_tools
1 parent f8ab967 commit 30a4398Copy full SHA for 30a4398
module/core/format_tools/src/format/print.rs
@@ -229,9 +229,13 @@ mod private
229
#[ derive( Debug, Default ) ]
230
pub struct RowDescriptor
231
{
232
+ /// Index of the row.
233
pub irow : usize,
234
+ /// Height of the row.
235
pub height : usize,
236
+ /// Type of the line: header or regular.
237
pub typ : LineType,
238
+ /// Visibility of the row.
239
pub vis : bool,
240
}
241
@@ -240,8 +244,11 @@ mod private
244
245
pub struct ColDescriptor< 'label >
242
246
247
+ /// Index of the column.
243
248
pub icol : usize,
249
+ /// Column width.
250
pub width : usize,
251
+ /// Label of the column.
252
pub label : &'label str,
253
254
0 commit comments