[][src]Struct cdrs::types::rows::Row

pub struct Row { /* fields omitted */ }

Methods

impl Row[src]

Trait Implementations

impl IntoRustByName<Blob> for Row[src]

fn get_r_by_name(&self, name: &str) -> CDRSResult<R>[src]

impl IntoRustByName<String> for Row[src]

fn get_r_by_name(&self, name: &str) -> CDRSResult<R>[src]

impl IntoRustByName<bool> for Row[src]

fn get_r_by_name(&self, name: &str) -> CDRSResult<R>[src]

impl IntoRustByName<i64> for Row[src]

fn get_r_by_name(&self, name: &str) -> CDRSResult<R>[src]

impl IntoRustByName<i32> for Row[src]

fn get_r_by_name(&self, name: &str) -> CDRSResult<R>[src]

impl IntoRustByName<i16> for Row[src]

fn get_r_by_name(&self, name: &str) -> CDRSResult<R>[src]

impl IntoRustByName<i8> for Row[src]

fn get_r_by_name(&self, name: &str) -> CDRSResult<R>[src]

impl IntoRustByName<f64> for Row[src]

fn get_r_by_name(&self, name: &str) -> CDRSResult<R>[src]

impl IntoRustByName<f32> for Row[src]

fn get_r_by_name(&self, name: &str) -> CDRSResult<R>[src]

impl IntoRustByName<IpAddr> for Row[src]

fn get_r_by_name(&self, name: &str) -> CDRSResult<R>[src]

impl IntoRustByName<Uuid> for Row[src]

fn get_r_by_name(&self, name: &str) -> CDRSResult<R>[src]

impl IntoRustByName<List> for Row[src]

fn get_r_by_name(&self, name: &str) -> CDRSResult<R>[src]

impl IntoRustByName<Map> for Row[src]

fn get_r_by_name(&self, name: &str) -> CDRSResult<R>[src]

impl IntoRustByName<UDT> for Row[src]

fn get_r_by_name(&self, name: &str) -> CDRSResult<R>[src]

impl IntoRustByName<Tuple> for Row[src]

fn get_r_by_name(&self, name: &str) -> CDRSResult<R>[src]

impl IntoRustByName<Timespec> for Row[src]

fn get_r_by_name(&self, name: &str) -> CDRSResult<R>[src]

impl IntoRustByName<Decimal> for Row[src]

fn get_r_by_name(&self, name: &str) -> CDRSResult<R>[src]

impl ByName for Row[src]

fn by_name<R>(&self, name: &str) -> CDRSResult<Option<R>> where
    Self: IntoRustByName<R>, 
[src]

fn r_by_name<R>(&self, name: &str) -> CDRSResult<R> where
    Self: IntoRustByName<R>, 
[src]

impl IntoRustByIndex<Blob> for Row[src]

fn get_r_by_index(&self, index: usize) -> CDRSResult<R>[src]

impl IntoRustByIndex<String> for Row[src]

fn get_r_by_index(&self, index: usize) -> CDRSResult<R>[src]

impl IntoRustByIndex<bool> for Row[src]

fn get_r_by_index(&self, index: usize) -> CDRSResult<R>[src]

impl IntoRustByIndex<i64> for Row[src]

fn get_r_by_index(&self, index: usize) -> CDRSResult<R>[src]

impl IntoRustByIndex<i32> for Row[src]

fn get_r_by_index(&self, index: usize) -> CDRSResult<R>[src]

impl IntoRustByIndex<i16> for Row[src]

fn get_r_by_index(&self, index: usize) -> CDRSResult<R>[src]

impl IntoRustByIndex<i8> for Row[src]

fn get_r_by_index(&self, index: usize) -> CDRSResult<R>[src]

impl IntoRustByIndex<f64> for Row[src]

fn get_r_by_index(&self, index: usize) -> CDRSResult<R>[src]

impl IntoRustByIndex<f32> for Row[src]

fn get_r_by_index(&self, index: usize) -> CDRSResult<R>[src]

impl IntoRustByIndex<IpAddr> for Row[src]

fn get_r_by_index(&self, index: usize) -> CDRSResult<R>[src]

impl IntoRustByIndex<Uuid> for Row[src]

fn get_r_by_index(&self, index: usize) -> CDRSResult<R>[src]

impl IntoRustByIndex<List> for Row[src]

fn get_r_by_index(&self, index: usize) -> CDRSResult<R>[src]

impl IntoRustByIndex<Map> for Row[src]

fn get_r_by_index(&self, index: usize) -> CDRSResult<R>[src]

impl IntoRustByIndex<UDT> for Row[src]

fn get_r_by_index(&self, index: usize) -> CDRSResult<R>[src]

impl IntoRustByIndex<Tuple> for Row[src]

fn get_r_by_index(&self, index: usize) -> CDRSResult<R>[src]

impl IntoRustByIndex<Timespec> for Row[src]

fn get_r_by_index(&self, index: usize) -> CDRSResult<R>[src]

impl IntoRustByIndex<Decimal> for Row[src]

fn get_r_by_index(&self, index: usize) -> CDRSResult<R>[src]

impl ByIndex for Row[src]

fn by_index<R>(&self, index: usize) -> CDRSResult<Option<R>> where
    Self: IntoRustByIndex<R>, 
[src]

fn r_by_index<R>(&self, index: usize) -> CDRSResult<R> where
    Self: IntoRustByIndex<R>, 
[src]

impl Clone for Row[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Row[src]

Auto Trait Implementations

impl Send for Row

impl Unpin for Row

impl Sync for Row

impl UnwindSafe for Row

impl RefUnwindSafe for Row

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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]