Struct query_builder::query_builder::DeleteQuery [] [src]

pub struct DeleteQuery<'a, 'c> {
    pub whre: BTreeMap<&'a str, Value<'c>>,
    // some fields omitted
}

Struct representing a SQL Delete Statement

Fields

Methods

impl<'a, 'c> DeleteQuery<'a, 'c>
[src]

[src]

Return a new DeleteQuery that deletes data from table table

[src]

Sets the limit of items to delete

[src]

Returns the limit of the DeleteQuery

[src]

Removes the limit from the DeleteQuery

[src]

Return a String representing the struct

Trait Implementations

Auto Trait Implementations

impl<'a, 'c> Send for DeleteQuery<'a, 'c>

impl<'a, 'c> Sync for DeleteQuery<'a, 'c>