[][src]Struct quaint::ast::Row

pub struct Row<'a> {
    pub values: Vec<DatabaseValue<'a>>,
}

A collection of values surrounded by parentheses.

Fields

values: Vec<DatabaseValue<'a>>

Methods

impl<'a> Row<'a>[src]

pub fn new() -> Self[src]

pub fn push<T>(self, value: T) -> Self where
    T: Into<DatabaseValue<'a>>, 
[src]

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

Trait Implementations

impl<'a> Clone for Row<'a>[src]

impl<'a> Comparable<'a> for Row<'a>[src]

impl<'a> Debug for Row<'a>[src]

impl<'a> Default for Row<'a>[src]

impl<'a, A, B, C, D, E> From<(A, B, C, D, E)> for Row<'a> where
    A: Into<DatabaseValue<'a>>,
    B: Into<DatabaseValue<'a>>,
    C: Into<DatabaseValue<'a>>,
    D: Into<DatabaseValue<'a>>,
    E: Into<DatabaseValue<'a>>, 
[src]

impl<'a, A, B, C, D> From<(A, B, C, D)> for Row<'a> where
    A: Into<DatabaseValue<'a>>,
    B: Into<DatabaseValue<'a>>,
    C: Into<DatabaseValue<'a>>,
    D: Into<DatabaseValue<'a>>, 
[src]

impl<'a, A, B, C> From<(A, B, C)> for Row<'a> where
    A: Into<DatabaseValue<'a>>,
    B: Into<DatabaseValue<'a>>,
    C: Into<DatabaseValue<'a>>, 
[src]

impl<'a, A, B> From<(A, B)> for Row<'a> where
    A: Into<DatabaseValue<'a>>,
    B: Into<DatabaseValue<'a>>, 
[src]

impl<'a, A> From<(A,)> for Row<'a> where
    A: Into<DatabaseValue<'a>>, 
[src]

impl<'a> From<Row<'a>> for DatabaseValue<'a>[src]

impl<'a, T> From<Vec<T>> for Row<'a> where
    T: Into<DatabaseValue<'a>>, 
[src]

impl<'a> PartialEq<Row<'a>> for Row<'a>[src]

impl<'a> StructuralPartialEq for Row<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Row<'a>

impl<'a> Send for Row<'a>

impl<'a> Sync for Row<'a>

impl<'a> Unpin for Row<'a>

impl<'a> UnwindSafe for Row<'a>

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,