Struct nxtnote_savefile_format::schema::block_properties::table[][src]

pub struct table;
Expand description

The actual table struct

This is the type which provides the base methods of the query builder, such as .select and .filter.

Implementations

Represents table_name.*, which is sometimes necessary for efficient count queries. It cannot be used in place of all_columns

Trait Implementations

How many times does Self appear in QS?

How many times does Self appear in QS?

How many times does Self appear in QS?

How many times does Self appear in QS?

The SQL type of Self::Query

What kind of query does this type represent?

Converts a type which semantically represents a SQL query into the actual query being executed. See the trait level docs for more. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

The table this type is associated with.

Returns the table this type is associated with.

The VALUES clause to insert these records Read more

Construct Self::Values Read more

Insert self into a given table. Read more

The VALUES clause to insert these records Read more

Construct Self::Values Read more

Insert self into a given table. Read more

The VALUES clause to insert these records Read more

Construct Self::Values Read more

Insert self into a given table. Read more

The VALUES clause to insert these records Read more

Construct Self::Values Read more

Insert self into a given table. Read more

What is the WHERE clause of this target?

Decomposes self into the table and where clause.

A type which uniquely represents Self in a SQL query. Read more

Can the SQL generated by Self be uniquely identified by its type? Read more

Returns the type id of Self::QueryId if Self::HAS_STATIC_QUERY_ID. Returns None otherwise. Read more

The type returned by from_clause

The type returned by default_selection

The actual FROM clause of this type. This is typically only called in QueryFragment implementations. Read more

The default select clause of this type, which should be used if no select clause was explicitly specified. This should always be a tuple of all the desired columns, not star Read more

The type returned by primary_key

The type returned by all_columns

Returns the primary key of this table. Read more

Returns a tuple of all columns belonging to this table.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

👎 Deprecated since 1.3.0:

use LockingDsl<ForUpdate> instead

The type returned by for_update. See dsl::ForUpdate for convenient access to this type. Read more

👎 Deprecated since 1.3.0:

use LockingDsl<ForUpdate> instead

See the trait level documentation

Performs the conversion.

Performs the conversion.

Convert self to an expression for Diesel’s query builder. Read more

Convert &self to an expression for Diesel’s query builder. Read more

See the trait documentation.

Adds the DISTINCT keyword to a query. Read more

Adds a SELECT clause to the query. Read more

Get the count of a query. This is equivalent to .select(count_star()) Read more

Join two tables using a SQL INNER JOIN. Read more

Join two tables using a SQL LEFT OUTER JOIN. Read more

Adds to the WHERE clause of a query. Read more

Adds to the WHERE clause of a query using OR Read more

Attempts to find a single record from the given table by primary key. Read more

Sets the order clause of a query. Read more

Alias for order

Appends to the ORDER BY clause of this SQL query. Read more

Sets the limit clause of the query. Read more

Sets the offset clause of the query. Read more

Adds FOR UPDATE to the end of the select statement. Read more

Adds FOR NO KEY UPDATE to the end of the select statement. Read more

Adds FOR SHARE to the end of the select statement. Read more

Adds FOR KEY SHARE to the end of the select statement. Read more

Adds SKIP LOCKED to the end of a FOR UPDATE clause. Read more

Adds NOWAIT to the end of a FOR UPDATE clause. Read more

Boxes the pieces of a query into a single type. Read more

Wraps this select statement in parenthesis, allowing it to be used as an expression. Read more

Coerce the SQL type of the select clause to it’s nullable equivalent. Read more

Executes the given command, returning the number of rows affected. Read more

Executes the given query, returning a Vec with the returned rows. Read more

Runs the command, and returns the affected row. Read more

Runs the command, returning an Vec with the affected rows. Read more

Attempts to load a single record. Read more

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.