Struct netlink_packet_route::route::RouteHeader
source · pub struct RouteHeader {
pub address_family: AddressFamily,
pub destination_prefix_length: u8,
pub source_prefix_length: u8,
pub tos: u8,
pub table: u8,
pub protocol: RouteProtocol,
pub scope: RouteScope,
pub kind: RouteType,
pub flags: Vec<RouteFlag>,
}
Expand description
High level representation of RTM_GETROUTE
, RTM_ADDROUTE
, RTM_DELROUTE
messages headers.
Fields§
§address_family: AddressFamily
Address family of the route: either AddressFamily::Inet for IPv4, or AddressFamily::Inet6 for IPv6.
destination_prefix_length: u8
Prefix length of the destination subnet.
source_prefix_length: u8
Prefix length of the source address.
tos: u8
Type of service.
table: u8
Routing table ID.
protocol: RouteProtocol
Route Protocol
scope: RouteScope
Route scope
kind: RouteType
Route type.
flags: Vec<RouteFlag>
Flags when querying the kernel with a RTM_GETROUTE
message.
Implementations§
source§impl RouteHeader
impl RouteHeader
pub const RT_TABLE_MAIN: u8 = 254u8
pub const RT_TABLE_UNSPEC: u8 = 0u8
Trait Implementations§
source§impl Clone for RouteHeader
impl Clone for RouteHeader
source§fn clone(&self) -> RouteHeader
fn clone(&self) -> RouteHeader
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RouteHeader
impl Debug for RouteHeader
source§impl Default for RouteHeader
impl Default for RouteHeader
source§fn default() -> RouteHeader
fn default() -> RouteHeader
Returns the “default value” for a type. Read more
source§impl Emitable for RouteHeader
impl Emitable for RouteHeader
source§impl<'a, T: AsRef<[u8]> + ?Sized> Parseable<RouteMessageBuffer<&'a T>> for RouteHeader
impl<'a, T: AsRef<[u8]> + ?Sized> Parseable<RouteMessageBuffer<&'a T>> for RouteHeader
source§fn parse(buf: &RouteMessageBuffer<&'a T>) -> Result<Self, DecodeError>
fn parse(buf: &RouteMessageBuffer<&'a T>) -> Result<Self, DecodeError>
Deserialize the current type.
source§impl PartialEq for RouteHeader
impl PartialEq for RouteHeader
source§fn eq(&self, other: &RouteHeader) -> bool
fn eq(&self, other: &RouteHeader) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for RouteHeader
impl StructuralEq for RouteHeader
impl StructuralPartialEq for RouteHeader
Auto Trait Implementations§
impl RefUnwindSafe for RouteHeader
impl Send for RouteHeader
impl Sync for RouteHeader
impl Unpin for RouteHeader
impl UnwindSafe for RouteHeader
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