Type Alias diesel::pg::sql_types::BigSerial

source ·
pub type BigSerial = BigInt;
Available on crate feature postgres_backend only.
Expand description

Alias for BigInt

Aliased Type§

struct BigSerial;

Trait Implementations§

source§

impl Add for BigInt

§

type Rhs = BigInt

The SQL type which can be added to this one
§

type Output = BigInt

The SQL type of the result of adding Rhs to Self
source§

impl Clone for BigInt

source§

fn clone(&self) -> BigInt

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for BigInt

source§

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

Formats the value using the given formatter. Read more
source§

impl Default for BigInt

source§

fn default() -> BigInt

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

impl Div for BigInt

§

type Rhs = BigInt

The SQL type which this one can be divided by
§

type Output = BigInt

The SQL type of the result of dividing Self by Rhs
source§

impl Foldable for BigInt

§

type Sum = Nullable<Numeric>

The SQL type of sum(this_type)
§

type Avg = Nullable<Numeric>

The SQL type of avg(this_type)
source§

impl Mul for BigInt

§

type Rhs = BigInt

The SQL type which this can be multiplied by
§

type Output = BigInt

The SQL type of the result of multiplying Self by Rhs
source§

impl QueryId for BigInt

§

type QueryId = BigInt

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

const HAS_STATIC_QUERY_ID: bool = true

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

fn query_id() -> Option<TypeId>

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

impl SqlType for BigInt

§

type IsNull = NotNull

Is this type nullable? Read more
source§

impl Sub for BigInt

§

type Rhs = BigInt

The SQL type which can be subtracted from this one
§

type Output = BigInt

The SQL type of the result of subtracting Rhs from Self
source§

impl Copy for BigInt

source§

impl SingleValue for BigInt

source§

impl SqlOrd for BigInt