1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
use super::expression_methods::InetOrCidr;
use crate::expression::functions::sql_function;
use crate::sql_types::*;
sql_function! {
#[cfg(feature = "postgres_backend")]
fn abbrev<T: InetOrCidr + SingleValue>(addr: T) -> Text;
}
sql_function! {
#[cfg(feature = "postgres_backend")]
fn broadcast<T: InetOrCidr + SingleValue>(addr: T) -> Inet;
}
sql_function! {
#[cfg(feature = "postgres_backend")]
fn family<T: InetOrCidr + SingleValue>(addr: T) -> Integer;
}
sql_function! {
#[cfg(feature = "postgres_backend")]
fn host<T: InetOrCidr + SingleValue>(addr: T) -> Text;
}
sql_function! {
#[cfg(feature = "postgres_backend")]
fn hostmask<T: InetOrCidr + SingleValue>(addr: T) -> Inet;
}
sql_function! {
#[cfg(feature = "postgres_backend")]
fn inet_merge<T: InetOrCidr + SingleValue, U: InetOrCidr + SingleValue>(a: T, b: U) -> Cidr;
}
sql_function! {
#[cfg(feature = "postgres_backend")]
fn inet_same_family<T: InetOrCidr + SingleValue, U: InetOrCidr + SingleValue>(a: T, b: U) -> Bool;
}
sql_function! {
#[cfg(feature = "postgres_backend")]
fn masklen<T: InetOrCidr + SingleValue>(addr: T) -> Integer;
}
sql_function! {
#[cfg(feature = "postgres_backend")]
fn netmask<T: InetOrCidr + SingleValue>(addr: T) -> Inet;
}
sql_function! {
#[cfg(feature = "postgres_backend")]
fn network<T: InetOrCidr + SingleValue>(addr: T) -> Cidr;
}
sql_function! {
#[cfg(feature = "postgres_backend")]
fn set_masklen<T: InetOrCidr + SingleValue>(addr: T, len: Integer) -> T;
}