[][src]Struct butane_core::query::Query

pub struct Query<T: DataResult> { /* fields omitted */ }

Representation of a database query.

Implementations

impl<T: DataResult> Query<T>[src]

pub fn new(table: &'static str) -> Query<T>[src]

Creates a query which matches all objects in table. The set of matched objects can be restricted with filter and limit.

pub fn filter(mut self: Self, expr: BoolExpr) -> Query<T>[src]

Restricts the query to matching only objects for which expr is true. Returns self as this method is expected to be chained.

pub fn limit(mut self: Self, lim: i32) -> Query<T>[src]

Limits the query to matching the first lim objects. Returns self as this method is expected to be chained.

pub fn load_first(self, conn: &impl ConnectionMethods) -> Result<Option<T>>[src]

Executes the query against conn and returns the first result (if any).

pub fn load(self, conn: &impl ConnectionMethods) -> Result<QueryResult<T>>[src]

Executes the query against conn.

pub fn delete(self, conn: &impl ConnectionMethods) -> Result<usize>[src]

Executes the query against conn and deletes all matching objects.

Trait Implementations

impl<T: Clone + DataResult> Clone for Query<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Query<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for Query<T> where
    T: Send
[src]

impl<T> Sync for Query<T> where
    T: Sync
[src]

impl<T> Unpin for Query<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for Query<T> where
    T: UnwindSafe
[src]

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> 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.