mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-01-20 15:46:30 +00:00
8 lines
200 B
Rust
8 lines
200 B
Rust
pub trait Column {
|
|
/// Returns the name or alias of the column.
|
|
fn name(&self) -> &str;
|
|
|
|
/// Returns the ordinal (also known as the index) of the column.
|
|
fn ordinal(&self) -> usize;
|
|
}
|