[][src]Struct diesel::pg::types::sql_types::Cidr

pub struct Cidr;

The CIDR SQL type. This type can only be used with feature = "network-address"

ToSql impls

FromSql impls

Examples

extern crate ipnetwork;
use ipnetwork::IpNetwork;

table! {
    clients {
        id -> Integer,
        ip_address -> Cidr,
    }
}

let addr = IpNetwork::from_str("10.1.9.32/32").unwrap();
let inserted_addr = insert_into(clients)
    .values(ip_address.eq(&addr))
    .returning(ip_address)
    .get_result(&connection);
assert_eq!(Ok(addr), inserted_addr);

Trait Implementations

impl FromSql<Cidr, Pg> for IpNetwork[src]

impl<'expr> AsExpression<Cidr> for &'expr IpNetwork[src]

type Expression = Bound<Cidr, Self>

The expression being returned

impl<'expr2, 'expr> AsExpression<Cidr> for &'expr2 &'expr IpNetwork[src]

type Expression = Bound<Cidr, Self>

The expression being returned

impl AsExpression<Cidr> for IpNetwork[src]

type Expression = Bound<Cidr, Self>

The expression being returned

impl QueryId for Cidr[src]

type QueryId = Cidr

A type which uniquely represents Self in a SQL query. 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 ToSql<Cidr, Pg> for IpNetwork[src]

impl HasSqlType<Cidr> for Pg[src]

impl NotNull for Cidr[src]

impl SingleValue for Cidr[src]

impl Copy for Cidr[src]

impl Default for Cidr[src]

impl Clone for Cidr[src]

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

Performs copy-assignment from source. Read more

impl Debug for Cidr[src]

Auto Trait Implementations

impl Send for Cidr

impl Sync for Cidr

Blanket Implementations

impl<T> IntoSql for T[src]

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

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

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

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

impl<T> IntoNullable for T where
    T: NotNull
[src]

type Nullable = Nullable<T>

The nullable representation of this type. Read more

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.