8 lines
131 B
Rust
8 lines
131 B
Rust
|
|
use super::ITableRow;
|
||
|
|
|
||
|
|
#[derive(Debug, Clone)]
|
||
|
|
pub(crate) enum ITableGroup {
|
||
|
|
Head(Vec<ITableRow>),
|
||
|
|
Body(Vec<ITableRow>),
|
||
|
|
}
|