pub enum RouteRefreshSubtype {
Normal,
BoRR,
EoRR,
Unknown(u8),
}Expand description
ROUTE-REFRESH demarcation subtype (RFC 7313).
Variants§
Normal
Normal route refresh request (subtype 0).
BoRR
Beginning of Route Refresh (subtype 1, RFC 7313).
EoRR
End of Route Refresh (subtype 2, RFC 7313).
Unknown(u8)
Unrecognized subtype value.
Implementations§
Trait Implementations§
Source§impl Clone for RouteRefreshSubtype
impl Clone for RouteRefreshSubtype
Source§fn clone(&self) -> RouteRefreshSubtype
fn clone(&self) -> RouteRefreshSubtype
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 RouteRefreshSubtype
impl Debug for RouteRefreshSubtype
Source§impl Hash for RouteRefreshSubtype
impl Hash for RouteRefreshSubtype
Source§impl PartialEq for RouteRefreshSubtype
impl PartialEq for RouteRefreshSubtype
impl Copy for RouteRefreshSubtype
impl Eq for RouteRefreshSubtype
impl StructuralPartialEq for RouteRefreshSubtype
Auto Trait Implementations§
impl Freeze for RouteRefreshSubtype
impl RefUnwindSafe for RouteRefreshSubtype
impl Send for RouteRefreshSubtype
impl Sync for RouteRefreshSubtype
impl Unpin for RouteRefreshSubtype
impl UnsafeUnpin for RouteRefreshSubtype
impl UnwindSafe for RouteRefreshSubtype
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