pub struct LlgrFamily {
pub afi: Afi,
pub safi: Safi,
pub forwarding_preserved: bool,
pub stale_time: u32,
}Expand description
Per-AFI/SAFI entry in the Long-Lived Graceful Restart capability (RFC 9494).
Fields§
§afi: AfiAddress family.
safi: SafiSub-address family.
forwarding_preserved: boolWhether the peer preserved forwarding state for this family during LLGR.
stale_time: u32Long-lived stale time in seconds (24-bit, max 16_777_215 ≈ 194 days).
Trait Implementations§
Source§impl Clone for LlgrFamily
impl Clone for LlgrFamily
Source§fn clone(&self) -> LlgrFamily
fn clone(&self) -> LlgrFamily
Returns a duplicate 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 LlgrFamily
impl Debug for LlgrFamily
Source§impl PartialEq for LlgrFamily
impl PartialEq for LlgrFamily
impl Copy for LlgrFamily
impl Eq for LlgrFamily
impl StructuralPartialEq for LlgrFamily
Auto Trait Implementations§
impl Freeze for LlgrFamily
impl RefUnwindSafe for LlgrFamily
impl Send for LlgrFamily
impl Sync for LlgrFamily
impl Unpin for LlgrFamily
impl UnsafeUnpin for LlgrFamily
impl UnwindSafe for LlgrFamily
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