[][src]Struct rdatatables::Tables

pub struct Tables<'a> {
    pub origin: (&'a str, &'a str),
    pub fields: Vec<&'a str>,
    pub join_targets: Option<Vec<(&'a str, (&'a str, &'a str), (&'a str, &'a str))>>,
    pub datatables_post_query: DataTableQuery,
    pub query: Option<String>,
    pub condition: Option<Vec<(&'a str, &'a str, &'a str)>>,
}

Fields

origin: (&'a str, &'a str)fields: Vec<&'a str>join_targets: Option<Vec<(&'a str, (&'a str, &'a str), (&'a str, &'a str))>>datatables_post_query: DataTableQueryquery: Option<String>condition: Option<Vec<(&'a str, &'a str, &'a str)>>

Implementations

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

pub fn generate(&mut self) -> String[src]

pub fn select(&mut self) -> Self[src]

pub fn where_like(&mut self) -> Self[src]

pub fn join(&mut self) -> Self[src]

pub fn condition(&mut self) -> Self[src]

Trait Implementations

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for Tables<'a>

impl<'a> Send for Tables<'a>

impl<'a> Sync for Tables<'a>

impl<'a> Unpin for Tables<'a>

impl<'a> UnwindSafe for Tables<'a>

Blanket Implementations

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

impl<T, I> AsResult<T, I> for T where
    I: Input, 

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> IntoCollection<T> for T

impl<T> IntoSql for 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<T> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,