heim_net/os/linux/nic.rs
1use crate::Address;
2
3/// Linux-specific extension for [Nic].
4///
5/// [Nic]: ../../struct.Nic.html
6pub trait NicExt {
7 /// Returns broadcast address if available.
8 fn broadcast(&self) -> Option<Address>;
9
10 /// Returns `bool` indicating whether interface is broadcast.
11 fn is_broadcast(&self) -> bool;
12
13 /// Returns `bool` indicating whether interface is point-to-point.
14 fn is_point_to_point(&self) -> bool;
15}
16
17#[cfg(target_os = "linux")]
18impl NicExt for crate::Nic {
19 fn broadcast(&self) -> Option<Address> {
20 self.as_ref().broadcast()
21 }
22
23 fn is_broadcast(&self) -> bool {
24 self.as_ref().is_broadcast()
25 }
26
27 fn is_point_to_point(&self) -> bool {
28 self.as_ref().is_point_to_point()
29 }
30}