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
use crate::Address;
pub trait NicExt {
fn broadcast(&self) -> Option<Address>;
fn is_broadcast(&self) -> bool;
fn is_point_to_point(&self) -> bool;
}
#[cfg(target_os = "macos")]
impl NicExt for crate::Nic {
fn broadcast(&self) -> Option<Address> {
self.as_ref().broadcast()
}
fn is_broadcast(&self) -> bool {
self.as_ref().is_broadcast()
}
fn is_point_to_point(&self) -> bool {
self.as_ref().is_point_to_point()
}
}