Struct query_builder::UpdateQuery [] [src]

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

Struct representing an SQL Update statement

Fields

Methods

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

[src]

Returns a new UpdateQuery that updates the table table

[src]

Set the limit of the Query to the value of l

[src]

Returns whether or not the UpdateQuery has a limit

[src]

Returns the limit of the UpdateQuery if there is one

[src]

Returns the String representation of the UpdateQuery

Trait Implementations

impl<'a, 'c> Debug for UpdateQuery<'a, 'c>
[src]

[src]

Formats the value using the given formatter. Read more

impl<'a, 'c> Display for UpdateQuery<'a, 'c>
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

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

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