pub struct Apl<'a> {
pub address_family: u8,
pub prefix: u8,
pub negation: bool,
pub data: Characters<'a>,
}
Expand description
§Address prefix list record
This record is used to store a list of address prefixes.
Fields§
§address_family: u8
The address family for the prefix.
prefix: u8
The prefix length.
negation: bool
The negation flag.
data: Characters<'a>
The address family specific data.
Trait Implementations§
impl<'a> Copy for Apl<'a>
impl<'a> StructuralPartialEq for Apl<'a>
Auto Trait Implementations§
impl<'a> Freeze for Apl<'a>
impl<'a> RefUnwindSafe for Apl<'a>
impl<'a> Send for Apl<'a>
impl<'a> Sync for Apl<'a>
impl<'a> Unpin for Apl<'a>
impl<'a> UnwindSafe for Apl<'a>
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