Skip to repository content18 lines · 390 B · rust
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T02:32:40.280Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
types.rs
1use std::fmt::Debug;
2
3pub use coordinates::*;
4mod coordinates;
5pub use table_cell::*;
6mod table_cell;
7pub use table_like_content::*;
8mod table_like_content;
9
10/// Line number information for CSV rows
11#[derive(Debug, Clone, Copy)]
12pub enum LineNumber {
13 /// Single line row
14 Line(usize),
15 /// Multi-line row spanning from start to end line. Incluisive
16 LineRange(usize, usize),
17}
18