Enum bgpkit_parser::parser::filter::Filter
source · pub enum Filter {
OriginAsn(u32),
Prefix(IpNet, PrefixMatchType),
PeerIp(IpAddr),
PeerIps(Vec<IpAddr>),
PeerAsn(u32),
Type(ElemType),
TsStart(f64),
TsEnd(f64),
AsPath(Regex),
}Expand description
Filter enum: definition o types of filters
The available filters are (filter_type (FilterType) – definition):
origin_asn(OriginAsn(u32)) – origin AS numberprefix(_super, _sub, _super_sub)(Prefix(IpNet, PrefixMatchType)) – network prefix and match typepeer_ip(PeerIp(IpAddr)) – peer’s IP addresspeer_ips(Vec<PeerIp(IpAddr)>) – peers’ IP addressespeer_asn(PeerAsn(u32)) – peer’s IP addresstype(Type(ElemType)) – message type (withdraworannounce)ts_start(TsStart(f64)) andts_end(TsEnd(f64)) – start and end unix timestampas_path(AsPath(Regex)) – regular expression for AS path string
Variants§
OriginAsn(u32)
Prefix(IpNet, PrefixMatchType)
PeerIp(IpAddr)
PeerIps(Vec<IpAddr>)
PeerAsn(u32)
Type(ElemType)
TsStart(f64)
TsEnd(f64)
AsPath(Regex)
Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Filter
impl Send for Filter
impl Sync for Filter
impl Unpin for Filter
impl UnwindSafe for Filter
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