MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / Table

Class Table

atomic-cli/src/output/table.rs:264–280  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

262/// ```
263#[derive(Debug, Clone, Default)]
264pub struct Table {
265 /// Column configurations
266 columns: Vec<Column>,
267
268 /// Data rows (excluding header)
269 rows: Vec<Row>,
270
271 /// Whether to show the header separator line
272 show_header_separator: bool,
273
274 /// Column separator string
275 column_separator: String,
276
277 /// Whether to use colors in output
278 #[allow(dead_code)] // set in constructor
279 use_colors: bool,
280}
281
282impl Table {
283 /// Create a new empty table.

Callers 3

fromMethod · 0.85
next_inode_adjMethod · 0.85
fromMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected