pub struct Inet;
Available on crate feature
postgres_backend
only.Expand description
The INET
SQL type. This type can only be used with feature = "network-address"
or feature = "ipnet-address"
.
§ToSql
impls
§FromSql
impls
§Examples
table! {
clients {
id -> Integer,
ip_address -> Inet,
}
}
// Parsing "ipnet::IpNet" would also work.
let addr = "10.1.9.32/32".parse::<ipnetwork::IpNetwork>()?;
let inserted_address = insert_into(clients)
.values(ip_address.eq(&addr))
.returning(ip_address)
.get_result(connection)?;
assert_eq!(addr, inserted_address);
Trait Implementations§
source§impl<'expr2, 'expr> AsExpression<Inet> for &'expr2 &'expr IpNet
Available on crate feature ipnet-address
only.
impl<'expr2, 'expr> AsExpression<Inet> for &'expr2 &'expr IpNet
Available on crate feature
ipnet-address
only.§type Expression = Bound<Inet, &'expr2 &'expr IpNet>
type Expression = Bound<Inet, &'expr2 &'expr IpNet>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl<'expr2, 'expr> AsExpression<Inet> for &'expr2 &'expr IpNetwork
Available on crate feature network-address
only.
impl<'expr2, 'expr> AsExpression<Inet> for &'expr2 &'expr IpNetwork
Available on crate feature
network-address
only.§type Expression = Bound<Inet, &'expr2 &'expr IpNetwork>
type Expression = Bound<Inet, &'expr2 &'expr IpNetwork>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl<'expr> AsExpression<Inet> for &'expr IpNet
Available on crate feature ipnet-address
only.
impl<'expr> AsExpression<Inet> for &'expr IpNet
Available on crate feature
ipnet-address
only.§type Expression = Bound<Inet, &'expr IpNet>
type Expression = Bound<Inet, &'expr IpNet>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl<'expr> AsExpression<Inet> for &'expr IpNetwork
Available on crate feature network-address
only.
impl<'expr> AsExpression<Inet> for &'expr IpNetwork
Available on crate feature
network-address
only.§type Expression = Bound<Inet, &'expr IpNetwork>
type Expression = Bound<Inet, &'expr IpNetwork>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl AsExpression<Inet> for IpNet
Available on crate feature ipnet-address
only.
impl AsExpression<Inet> for IpNet
Available on crate feature
ipnet-address
only.§type Expression = Bound<Inet, IpNet>
type Expression = Bound<Inet, IpNet>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl AsExpression<Inet> for IpNetwork
Available on crate feature network-address
only.
impl AsExpression<Inet> for IpNetwork
Available on crate feature
network-address
only.§type Expression = Bound<Inet, IpNetwork>
type Expression = Bound<Inet, IpNetwork>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl HasSqlType<Inet> for Pg
impl HasSqlType<Inet> for Pg
source§fn metadata(_: &mut Self::MetadataLookup) -> PgTypeMetadata
fn metadata(_: &mut Self::MetadataLookup) -> PgTypeMetadata
Fetch the metadata for the given type Read more
source§impl QueryId for Inet
impl QueryId for Inet
source§const HAS_STATIC_QUERY_ID: bool = true
const HAS_STATIC_QUERY_ID: bool = true
Can the SQL generated by
Self
be uniquely identified by its type? Read moreimpl Copy for Inet
impl SingleValue for Inet
Auto Trait Implementations§
impl Freeze for Inet
impl RefUnwindSafe for Inet
impl Send for Inet
impl Sync for Inet
impl Unpin for Inet
impl UnwindSafe for Inet
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<ST, U, DB> CompatibleType<U, DB> for ST
impl<ST, U, DB> CompatibleType<U, DB> for ST
source§impl<T> IntoNotNullable for T
impl<T> IntoNotNullable for T
§type NotNullable = T
type NotNullable = T
The not nullable representation of this type. Read more