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

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<'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 Clone for Cidr[src]

impl Copy for Cidr[src]

impl Debug for Cidr[src]

impl Default for Cidr[src]

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

impl HasSqlType<Cidr> for Pg[src]

impl NotNull for Cidr[src]

impl QueryId for Cidr[src]

type QueryId = Cidr

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

impl SingleValue for Cidr[src]

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

Auto Trait Implementations

impl RefUnwindSafe for Cidr

impl Send for Cidr

impl Sync for Cidr

impl Unpin for Cidr

impl UnwindSafe for Cidr

Blanket Implementations

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

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

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

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

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

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

type Nullable = Nullable<T>

The nullable representation of this type. Read more

impl<T> IntoSql for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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.

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.