pub enum MultiPathDecision {
ReplacePrimary,
AddAlternative,
Reject,
}Expand description
Decision for multi-path announce processing.
Variants§
ReplacePrimary
Replace/update the primary path (or the path with the same next_hop).
AddAlternative
Accept as an alternative path via a new next_hop.
Reject
Reject this announce.
Trait Implementations§
Source§impl Debug for MultiPathDecision
impl Debug for MultiPathDecision
Source§impl PartialEq for MultiPathDecision
impl PartialEq for MultiPathDecision
impl Eq for MultiPathDecision
impl StructuralPartialEq for MultiPathDecision
Auto Trait Implementations§
impl Freeze for MultiPathDecision
impl RefUnwindSafe for MultiPathDecision
impl Send for MultiPathDecision
impl Sync for MultiPathDecision
impl Unpin for MultiPathDecision
impl UnsafeUnpin for MultiPathDecision
impl UnwindSafe for MultiPathDecision
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