Enum bgpkit_parser::models::RouteRefreshError
source · #[repr(u8)]pub enum RouteRefreshError {
RESERVED = 0,
INVALID_MESSAGE_LENGTH = 1,
Unknown(u8),
}
Expand description
BGP ROUTE-REFRESH Message Error subcodes
https://www.iana.org/assignments/bgp-parameters/bgp-parameters.xhtml#route-refresh-error-subcodes
See source code for number assignment
Variants§
Trait Implementations§
source§impl Clone for RouteRefreshError
impl Clone for RouteRefreshError
source§fn clone(&self) -> RouteRefreshError
fn clone(&self) -> RouteRefreshError
Returns a copy 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 RouteRefreshError
impl Debug for RouteRefreshError
source§impl From<RouteRefreshError> for u8
impl From<RouteRefreshError> for u8
source§fn from(enum_value: RouteRefreshError) -> Self
fn from(enum_value: RouteRefreshError) -> Self
Converts to this type from the input type.
source§impl From<u8> for RouteRefreshError
impl From<u8> for RouteRefreshError
source§impl FromPrimitive for RouteRefreshError
impl FromPrimitive for RouteRefreshError
source§impl Hash for RouteRefreshError
impl Hash for RouteRefreshError
source§impl PartialEq for RouteRefreshError
impl PartialEq for RouteRefreshError
source§fn eq(&self, other: &RouteRefreshError) -> bool
fn eq(&self, other: &RouteRefreshError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for RouteRefreshError
impl Eq for RouteRefreshError
impl StructuralPartialEq for RouteRefreshError
Auto Trait Implementations§
impl RefUnwindSafe for RouteRefreshError
impl Send for RouteRefreshError
impl Sync for RouteRefreshError
impl Unpin for RouteRefreshError
impl UnwindSafe for RouteRefreshError
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.