tokio_postgres::row

Trait RowIndex

Source
pub trait RowIndex: Sealed { }
Expand description

A trait implemented by types that can index into columns of a row.

This cannot be implemented outside of this crate.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl RowIndex for str

Source§

impl RowIndex for usize

Source§

impl<'a, T> RowIndex for &'a T
where T: ?Sized + RowIndex,

Implementors§