pub enum RouterExpr {
Ip(IpAddr),
InetRtrOrRtrSet(String),
And {
left: Box<RouterExpr>,
right: Box<RouterExpr>,
},
Or {
left: Box<RouterExpr>,
right: Box<RouterExpr>,
},
Except {
left: Box<RouterExpr>,
right: Box<RouterExpr>,
},
Group(Box<RouterExpr>),
}Expand description
Expressions over router IP addresses, inet-rtr names, and rtr-set names using operators AND, OR, and EXCEPT. https://www.rfc-editor.org/rfc/rfc2622#page-25
Currently, we don’t have a means to check router expressions. https://github.com/SichangHe/parse_rpsl_policy/issues/13.
Variants§
Trait Implementations§
Source§impl Clone for RouterExpr
impl Clone for RouterExpr
Source§fn clone(&self) -> RouterExpr
fn clone(&self) -> RouterExpr
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 RouterExpr
impl Debug for RouterExpr
Source§impl<'de> Deserialize<'de> for RouterExpr
impl<'de> Deserialize<'de> for RouterExpr
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RouterExpr
Source§impl Hash for RouterExpr
impl Hash for RouterExpr
Source§impl Ord for RouterExpr
impl Ord for RouterExpr
Source§fn cmp(&self, other: &RouterExpr) -> Ordering
fn cmp(&self, other: &RouterExpr) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RouterExpr
impl PartialEq for RouterExpr
Source§fn eq(&self, other: &RouterExpr) -> bool
fn eq(&self, other: &RouterExpr) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for RouterExpr
impl PartialOrd for RouterExpr
Source§impl Serialize for RouterExpr
impl Serialize for RouterExpr
impl StructuralPartialEq for RouterExpr
Auto Trait Implementations§
impl Freeze for RouterExpr
impl RefUnwindSafe for RouterExpr
impl Send for RouterExpr
impl Sync for RouterExpr
impl Unpin for RouterExpr
impl UnsafeUnpin for RouterExpr
impl UnwindSafe for RouterExpr
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more