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

pub struct Inet;

The INET 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 -> Inet,
    }
}

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

Trait Implementations

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

The expression being returned

[src]

Perform the conversion

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

The expression being returned

[src]

Perform the conversion

impl AsExpression<Inet> for IpNetwork
[src]

The expression being returned

[src]

Perform the conversion

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

[src]

See the trait documentation.

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

[src]

See the trait documentation.

impl QueryId for Inet
[src]

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

HAS_STATIC_QUERY_ID: bool = true

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

[src]

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

impl NotNull for Inet
[src]

impl SingleValue for Inet
[src]

impl HasSqlType<Inet> for Pg
[src]

[src]

Fetch the metadata for the given type Read more

[src]

Fetch the metadata for a tuple representing an entire row Read more

impl Debug for Inet
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Inet
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Inet
[src]

impl Default for Inet
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for Inet

impl Sync for Inet