Trait tokio_postgres::row::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.

Object Safety§

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§