[][src]Struct tokio_postgres::row::Row

pub struct Row { /* fields omitted */ }

A row of data returned from the database by a query.

Methods

impl Row[src]

Important traits for &'_ mut [u8]
pub fn columns(&self) -> &[Column][src]

Returns information about the columns of data in the row.

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

Determines if the row contains no values.

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

Returns the number of values in the row.

pub fn get<'a, I, T>(&'a self, idx: I) -> T where
    I: RowIndex + Display,
    T: FromSql<'a>, 
[src]

Deserializes a value from the row.

The value can be specified either by its numeric index in the row, or by its column name.

Panics

Panics if the index is out of bounds or if the value cannot be converted to the specified type.

pub fn try_get<'a, I, T>(&'a self, idx: I) -> Result<T, Error> where
    I: RowIndex,
    T: FromSql<'a>, 
[src]

Like Row::get, but returns a Result rather than panicking.

Auto Trait Implementations

impl Send for Row

impl Sync for Row

impl Unpin for Row

impl !UnwindSafe for Row

impl !RefUnwindSafe for Row

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self