Trait sqlx::Row[][src]

pub trait Row: 'static + Sealed + Unpin + Send + Sync {
    type Database: Database;
    fn columns(&self) -> &[<Self::Database as Database>::Column]β“˜

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
;
fn try_get_raw<I>(
        &self,
        index: I
    ) -> Result<<Self::Database as HasValueRef<'_>>::ValueRef, Error>
    where
        I: ColumnIndex<Self>
; fn is_empty(&self) -> bool { ... }
fn len(&self) -> usize { ... }
fn column<I>(&self, index: I) -> &<Self::Database as Database>::Column
    where
        I: ColumnIndex<Self>
, { ... }
fn try_column<I>(
        &self,
        index: I
    ) -> Result<&<Self::Database as Database>::Column, Error>
    where
        I: ColumnIndex<Self>
, { ... }
fn get<'r, T, I>(&'r self, index: I) -> T
    where
        T: Decode<'r, Self::Database> + Type<Self::Database>,
        I: ColumnIndex<Self>
, { ... }
fn get_unchecked<'r, T, I>(&'r self, index: I) -> T
    where
        T: Decode<'r, Self::Database>,
        I: ColumnIndex<Self>
, { ... }
fn try_get<'r, T, I>(&'r self, index: I) -> Result<T, Error>
    where
        T: Decode<'r, Self::Database> + Type<Self::Database>,
        I: ColumnIndex<Self>
, { ... }
fn try_get_unchecked<'r, T, I>(&'r self, index: I) -> Result<T, Error>
    where
        T: Decode<'r, Self::Database>,
        I: ColumnIndex<Self>
, { ... } }
Expand description

Represents a single row from the database.

This trait is sealed and cannot be implemented for types outside of SQLx.

Associated Types

Required methods

fn columns(&self) -> &[<Self::Database as Database>::Column]β“˜

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

Gets all columns in this statement.

fn try_get_raw<I>(
    &self,
    index: I
) -> Result<<Self::Database as HasValueRef<'_>>::ValueRef, Error> where
    I: ColumnIndex<Self>, 
[src]

Index into the database row and decode a single value.

Errors

Provided methods

fn is_empty(&self) -> bool[src]

Returns true if this row has no columns.

fn len(&self) -> usize[src]

Returns the number of columns in this row.

fn column<I>(&self, index: I) -> &<Self::Database as Database>::Column where
    I: ColumnIndex<Self>, 
[src]

Gets the column information at index.

A string index can be used to access a column by name and a usize index can be used to access a column by position.

Panics

Panics if index is out of bounds. See try_column for a non-panicking version.

fn try_column<I>(
    &self,
    index: I
) -> Result<&<Self::Database as Database>::Column, Error> where
    I: ColumnIndex<Self>, 
[src]

Gets the column information at index or None if out of bounds.

fn get<'r, T, I>(&'r self, index: I) -> T where
    T: Decode<'r, Self::Database> + Type<Self::Database>,
    I: ColumnIndex<Self>, 
[src]

Index into the database row and decode a single value.

A string index can be used to access a column by name and a usize index can be used to access a column by position.

Panics

Panics if the column does not exist or its value cannot be decoded into the requested type. See try_get for a non-panicking version.

fn get_unchecked<'r, T, I>(&'r self, index: I) -> T where
    T: Decode<'r, Self::Database>,
    I: ColumnIndex<Self>, 
[src]

Index into the database row and decode a single value.

Unlike get, this method does not check that the type being returned from the database is compatible with the Rust type and blindly tries to decode the value.

Panics

Panics if the column does not exist or its value cannot be decoded into the requested type. See try_get_unchecked for a non-panicking version.

fn try_get<'r, T, I>(&'r self, index: I) -> Result<T, Error> where
    T: Decode<'r, Self::Database> + Type<Self::Database>,
    I: ColumnIndex<Self>, 
[src]

Index into the database row and decode a single value.

A string index can be used to access a column by name and a usize index can be used to access a column by position.

Errors

fn try_get_unchecked<'r, T, I>(&'r self, index: I) -> Result<T, Error> where
    T: Decode<'r, Self::Database>,
    I: ColumnIndex<Self>, 
[src]

Index into the database row and decode a single value.

Unlike try_get, this method does not check that the type being returned from the database is compatible with the Rust type and blindly tries to decode the value.

Errors

Implementors

impl Row for AnyRow[src]

type Database = Any

pub fn columns(&self) -> &[AnyColumn]β“˜

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

pub fn try_get_raw<I>(
    &self,
    index: I
) -> Result<<<AnyRow as Row>::Database as HasValueRef<'_>>::ValueRef, Error> where
    I: ColumnIndex<AnyRow>, 
[src]

impl Row for MssqlRow[src]

type Database = Mssql

pub fn columns(&self) -> &[MssqlColumn]β“˜

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

pub fn try_get_raw<I>(&self, index: I) -> Result<MssqlValueRef<'_>, Error> where
    I: ColumnIndex<MssqlRow>, 
[src]

impl Row for MySqlRow[src]

type Database = MySql

pub fn columns(&self) -> &[MySqlColumn]β“˜

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

pub fn try_get_raw<I>(&self, index: I) -> Result<MySqlValueRef<'_>, Error> where
    I: ColumnIndex<MySqlRow>, 
[src]

impl Row for PgRow[src]

type Database = Postgres

pub fn columns(&self) -> &[PgColumn]β“˜

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

pub fn try_get_raw<I>(&self, index: I) -> Result<PgValueRef<'_>, Error> where
    I: ColumnIndex<PgRow>, 
[src]

impl Row for SqliteRow[src]

type Database = Sqlite

pub fn columns(&self) -> &[SqliteColumn]β“˜

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

pub fn try_get_raw<I>(&self, index: I) -> Result<SqliteValueRef<'_>, Error> where
    I: ColumnIndex<SqliteRow>, 
[src]