pub struct OrfPayload {
pub when_to_refresh: WhenToRefresh,
pub groups: Vec<OrfEntryGroup>,
}Expand description
The ORF section carried in a ROUTE-REFRESH message (RFC 5291 §5.2), following the standard AFI/Reserved/SAFI header.
Fields§
§when_to_refresh: WhenToRefreshWhen-to-refresh directive.
groups: Vec<OrfEntryGroup>One or more ORF-Type groups.
Trait Implementations§
Source§impl Clone for OrfPayload
impl Clone for OrfPayload
Source§fn clone(&self) -> OrfPayload
fn clone(&self) -> OrfPayload
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OrfPayload
impl Debug for OrfPayload
impl Eq for OrfPayload
Source§impl PartialEq for OrfPayload
impl PartialEq for OrfPayload
Source§fn eq(&self, other: &OrfPayload) -> bool
fn eq(&self, other: &OrfPayload) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OrfPayload
Auto Trait Implementations§
impl Freeze for OrfPayload
impl RefUnwindSafe for OrfPayload
impl Send for OrfPayload
impl Sync for OrfPayload
impl Unpin for OrfPayload
impl UnsafeUnpin for OrfPayload
impl UnwindSafe for OrfPayload
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