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 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 Debug for Inet
[src]

[src]

Formats the value using the given formatter.

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