Struct nNye_user_persistence::schema::prioritized_content::columns::poster_account[][src]

pub struct poster_account;

Trait Implementations

impl Clone for poster_account[src]

fn clone(&self) -> poster_account[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Column for poster_account[src]

type Table = table

The table which this column belongs to

const NAME: &'static str[src]

The name of this column

impl Debug for poster_account[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Default for poster_account[src]

fn default() -> poster_account[src]

Returns the “default value” for a type. Read more

impl<T> EqAll<T> for poster_account where
    T: AsExpression<Text>,
    Eq<poster_account, T>: Expression<SqlType = Bool>, 
[src]

type Output = Eq<Self, T>

fn eq_all(self, rhs: T) -> Self::Output[src]

impl Expression for poster_account[src]

type SqlType = Text

The type that this expression represents in SQL

impl<DB> QueryFragment<DB> for poster_account where
    DB: Backend,
    <table as QuerySource>::FromClause: QueryFragment<DB>, 
[src]

fn walk_ast(&self, out: AstPass<'_, DB>) -> QueryResult<()>[src]

Walk over this QueryFragment for all passes. Read more

fn to_sql(&self, out: &mut <DB as Backend>::QueryBuilder) -> Result<(), Error>[src]

Converts this QueryFragment to its SQL representation. Read more

fn collect_binds(
    &self,
    out: &mut <DB as Backend>::BindCollector,
    metadata_lookup: &<DB as TypeMetadata>::MetadataLookup
) -> Result<(), Error>
[src]

Serializes all bind parameters in this query. Read more

fn is_safe_to_cache_prepared(&self) -> Result<bool, Error>[src]

Is this query safe to store in the prepared statement cache? Read more

impl QueryId for poster_account[src]

type QueryId = poster_account

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

const HAS_STATIC_QUERY_ID: bool[src]

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

fn query_id() -> Option<TypeId>[src]

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

impl<QS> AppearsOnTable<QS> for poster_account where
    QS: AppearsInFromClause<table, Count = Once>, 
[src]

impl Copy for poster_account[src]

impl NonAggregate for poster_account[src]

impl<Left, Right> SelectableExpression<Join<Left, Right, Inner>> for poster_account where
    poster_account: AppearsOnTable<Join<Left, Right, Inner>>,
    Join<Left, Right, Inner>: AppearsInFromClause<table, Count = Once>, 
[src]

impl<Left, Right> SelectableExpression<Join<Left, Right, LeftOuter>> for poster_account where
    poster_account: AppearsOnTable<Join<Left, Right, LeftOuter>>,
    Left: AppearsInFromClause<table, Count = Once>,
    Right: AppearsInFromClause<table, Count = Never>, 
[src]

impl<Join, On> SelectableExpression<JoinOn<Join, On>> for poster_account where
    poster_account: SelectableExpression<Join> + AppearsOnTable<JoinOn<Join, On>>, 
[src]

impl<From> SelectableExpression<SelectStatement<From, DefaultSelectClause, NoDistinctClause, NoWhereClause, NoOrderClause, NoLimitClause, NoOffsetClause, NoGroupByClause, NoLockingClause>> for poster_account where
    poster_account: SelectableExpression<From> + AppearsOnTable<SelectStatement<From>>, 
[src]

impl SelectableExpression<table> for poster_account[src]

Auto Trait Implementations

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<Conn, DB, T> ExecuteDsl<Conn, DB> for T where
    DB: Backend,
    T: QueryFragment<DB> + QueryId,
    Conn: Connection<Backend = DB>, 
[src]

pub fn execute(query: T, conn: &Conn) -> Result<usize, Error>[src]

Execute this command

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> IntoSql for T[src]

fn into_sql<T>(self) -> Self::Expression where
    Self: AsExpression<T>, 
[src]

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

fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression where
    &'a Self: AsExpression<T>, 
[src]

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

impl<T> NullableExpressionMethods for T where
    T: Expression
[src]

fn nullable(self) -> Nullable<Self>[src]

Converts this potentially non-null expression into one which is treated as nullable. This method has no impact on the generated SQL, and is only used to allow certain comparisons that would otherwise fail to compile. Read more

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

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

pub fn clone_into(&self, target: &mut T)[src]

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

recently added

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

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<QS, T, DB> BoxableExpression<QS, DB> for T where
    DB: Backend,
    T: Expression + SelectableExpression<QS> + NonAggregate + QueryFragment<DB>, 
[src]