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]
impl QueryId for Inettype QueryId = Inet
A type which uniquely represents Self in a SQL query. Read more
const HAS_STATIC_QUERY_ID: bool
HAS_STATIC_QUERY_ID: bool = true
Can the SQL generated by Self be uniquely identified by its type? Read more
fn query_id() -> Option<TypeId>[src]
fn query_id() -> Option<TypeId>Returns the type id of Self::QueryId if Self::HAS_STATIC_QUERY_ID. Returns None otherwise. Read more
impl NotNull for Inet[src]
impl NotNull for Inetimpl SingleValue for Inet[src]
impl SingleValue for Inetimpl HasSqlType<Inet> for Pg[src]
impl HasSqlType<Inet> for Pgfn metadata(_: &PgMetadataLookup) -> PgTypeMetadata[src]
fn metadata(_: &PgMetadataLookup) -> PgTypeMetadataFetch the metadata for the given type Read more
impl Debug for Inet[src]
impl Debug for Inetfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for Inet[src]
impl Clone for Inetfn clone(&self) -> Inet[src]
fn clone(&self) -> InetReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Copy for Inet[src]
impl Copy for Inetimpl Default for Inet[src]
impl Default for Inet