Struct IpScopes
pub struct IpScopes(/* private fields */);net only.Expand description
Special-use scope an IP address belongs to.
ip_scope returns exactly one bit per address (the most specific
category, or IpScopes::GLOBAL for an ordinary public address). The
bits are meant to be combined into masks — see IpScopes::LOCAL and
IpScopes::NON_GLOBAL — so a caller can ask “is this in any of these
scopes?” with IpScopes::intersects.
Implementations§
§impl IpScopes
impl IpScopes
pub const PRIVATE: IpScopes
pub const PRIVATE: IpScopes
RFC 1918 private (10/8, 172.16/12, 192.168/16) and IPv6
unique-local (fc00::/7).
pub const LINK_LOCAL: IpScopes
pub const LINK_LOCAL: IpScopes
Link-local: 169.254.0.0/16, fe80::/10.
pub const UNSPECIFIED: IpScopes
pub const UNSPECIFIED: IpScopes
Unspecified / “this network”: 0.0.0.0/8, ::.
pub const DOCUMENTATION: IpScopes
pub const DOCUMENTATION: IpScopes
Documentation ranges (e.g. 192.0.2.0/24, 2001:db8::/32).
pub const BENCHMARKING: IpScopes
pub const BENCHMARKING: IpScopes
Benchmarking ranges (198.18.0.0/15, 2001:2::/48).
§impl IpScopes
impl IpScopes
pub const fn bits(&self) -> u16
pub const fn bits(&self) -> u16
Get the underlying bits value.
The returned value is exactly the bits set in this flags value.
pub const fn from_bits(bits: u16) -> Option<IpScopes>
pub const fn from_bits(bits: u16) -> Option<IpScopes>
Convert from a bits value.
This method will return None if any unknown bits are set.
pub const fn from_bits_truncate(bits: u16) -> IpScopes
pub const fn from_bits_truncate(bits: u16) -> IpScopes
Convert from a bits value, unsetting any unknown bits.
pub const fn from_bits_retain(bits: u16) -> IpScopes
pub const fn from_bits_retain(bits: u16) -> IpScopes
Convert from a bits value exactly.
pub fn from_name(name: &str) -> Option<IpScopes>
pub fn from_name(name: &str) -> Option<IpScopes>
Get a flags value with the bits of a flag with the given name set.
This method will return None if name is empty or doesn’t
correspond to any named flag.
pub const fn intersects(&self, other: IpScopes) -> bool
pub const fn intersects(&self, other: IpScopes) -> bool
Whether any set bits in other are also set in self.
pub const fn contains(&self, other: IpScopes) -> bool
pub const fn contains(&self, other: IpScopes) -> bool
Whether all set bits in other are also set in self.
pub fn remove(&mut self, other: IpScopes)
pub fn remove(&mut self, other: IpScopes)
The intersection of self with the complement of other (&!).
This method is not equivalent to self & !other when other has unknown bits set.
remove won’t truncate other, but the ! operator will.
pub fn toggle(&mut self, other: IpScopes)
pub fn toggle(&mut self, other: IpScopes)
The bitwise exclusive-or (^) of the bits in self and other.
pub fn set(&mut self, other: IpScopes, value: bool)
pub fn set(&mut self, other: IpScopes, value: bool)
Call insert when value is true or remove when value is false.
pub const fn intersection(self, other: IpScopes) -> IpScopes
pub const fn intersection(self, other: IpScopes) -> IpScopes
The bitwise and (&) of the bits in self and other.
pub const fn union(self, other: IpScopes) -> IpScopes
pub const fn union(self, other: IpScopes) -> IpScopes
The bitwise or (|) of the bits in self and other.
pub const fn difference(self, other: IpScopes) -> IpScopes
pub const fn difference(self, other: IpScopes) -> IpScopes
The intersection of self with the complement of other (&!).
This method is not equivalent to self & !other when other has unknown bits set.
difference won’t truncate other, but the ! operator will.
pub const fn symmetric_difference(self, other: IpScopes) -> IpScopes
pub const fn symmetric_difference(self, other: IpScopes) -> IpScopes
The bitwise exclusive-or (^) of the bits in self and other.
pub const fn complement(self) -> IpScopes
pub const fn complement(self) -> IpScopes
The bitwise negation (!) of the bits in self, truncating the result.
§impl IpScopes
impl IpScopes
pub const fn iter(&self) -> Iter<IpScopes> ⓘ
pub const fn iter(&self) -> Iter<IpScopes> ⓘ
Yield a set of contained flags values.
Each yielded flags value will correspond to a defined named flag. Any unknown bits will be yielded together as a final flags value.
pub const fn iter_names(&self) -> IterNames<IpScopes> ⓘ
pub const fn iter_names(&self) -> IterNames<IpScopes> ⓘ
Yield a set of contained named flags values.
This method is like iter, except only yields bits in contained named flags.
Any unknown bits, or bits not corresponding to a contained flag will not be yielded.
§impl IpScopes
impl IpScopes
pub const NON_GLOBAL: IpScopes
pub const NON_GLOBAL: IpScopes
Every scope except IpScopes::GLOBAL — i.e. exactly the set that
is_private_ip treats as non-public.
Trait Implementations§
§impl BitAndAssign for IpScopes
impl BitAndAssign for IpScopes
§fn bitand_assign(&mut self, other: IpScopes)
fn bitand_assign(&mut self, other: IpScopes)
The bitwise and (&) of the bits in self and other.
§impl BitOrAssign for IpScopes
impl BitOrAssign for IpScopes
§fn bitor_assign(&mut self, other: IpScopes)
fn bitor_assign(&mut self, other: IpScopes)
The bitwise or (|) of the bits in self and other.
§impl BitXorAssign for IpScopes
impl BitXorAssign for IpScopes
§fn bitxor_assign(&mut self, other: IpScopes)
fn bitxor_assign(&mut self, other: IpScopes)
The bitwise exclusive-or (^) of the bits in self and other.
impl Copy for IpScopes
impl Eq for IpScopes
§impl Extend<IpScopes> for IpScopes
impl Extend<IpScopes> for IpScopes
§fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = IpScopes>,
fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = IpScopes>,
The bitwise or (|) of the bits in each flags value.
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one)Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one)§impl Flags for IpScopes
impl Flags for IpScopes
§fn from_bits_retain(bits: u16) -> IpScopes
fn from_bits_retain(bits: u16) -> IpScopes
§fn known_bits(&self) -> Self::Bits
fn known_bits(&self) -> Self::Bits
§fn unknown_bits(&self) -> Self::Bits
fn unknown_bits(&self) -> Self::Bits
§fn contains_unknown_bits(&self) -> bool
fn contains_unknown_bits(&self) -> bool
true if any unknown bits are set.§fn from_bits_truncate(bits: Self::Bits) -> Self
fn from_bits_truncate(bits: Self::Bits) -> Self
§fn from_name(name: &str) -> Option<Self>
fn from_name(name: &str) -> Option<Self>
§fn iter_names(&self) -> IterNames<Self> ⓘ
fn iter_names(&self) -> IterNames<Self> ⓘ
§fn iter_defined_names() -> IterDefinedNames<Self> ⓘ
fn iter_defined_names() -> IterDefinedNames<Self> ⓘ
Self::FLAGS].§fn iter_equal_names(&self) -> IterEqualNames<Self> ⓘ
fn iter_equal_names(&self) -> IterEqualNames<Self> ⓘ
§fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
other are also set in self.§fn contains(&self, other: Self) -> boolwhere
Self: Sized,
fn contains(&self, other: Self) -> boolwhere
Self: Sized,
other are also set in self.§fn insert(&mut self, other: Self)where
Self: Sized,
fn insert(&mut self, other: Self)where
Self: Sized,
|) of the bits in self and other.§fn toggle(&mut self, other: Self)where
Self: Sized,
fn toggle(&mut self, other: Self)where
Self: Sized,
^) of the bits in self and other.§fn set(&mut self, other: Self, value: bool)where
Self: Sized,
fn set(&mut self, other: Self, value: bool)where
Self: Sized,
Flags::insert] when value is true or [Flags::remove] when value is false.§fn intersection(self, other: Self) -> Self
fn intersection(self, other: Self) -> Self
&) of the bits in self and other.§fn difference(self, other: Self) -> Self
fn difference(self, other: Self) -> Self
§fn symmetric_difference(self, other: Self) -> Self
fn symmetric_difference(self, other: Self) -> Self
^) of the bits in self and other.§fn complement(self) -> Self
fn complement(self) -> Self
!) of the bits in self, truncating the result.§impl FromIterator<IpScopes> for IpScopes
impl FromIterator<IpScopes> for IpScopes
§fn from_iter<T>(iterator: T) -> IpScopeswhere
T: IntoIterator<Item = IpScopes>,
fn from_iter<T>(iterator: T) -> IpScopeswhere
T: IntoIterator<Item = IpScopes>,
The bitwise or (|) of the bits in each flags value.
§impl IntoIterator for IpScopes
impl IntoIterator for IpScopes
impl StructuralPartialEq for IpScopes
§impl Sub for IpScopes
impl Sub for IpScopes
Auto Trait Implementations§
impl Freeze for IpScopes
impl RefUnwindSafe for IpScopes
impl Send for IpScopes
impl Sync for IpScopes
impl Unpin for IpScopes
impl UnsafeUnpin for IpScopes
impl UnwindSafe for IpScopes
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§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
key and return true if they are equal.§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
§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
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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> ⓘ
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> ⓘ
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§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a rama_grpc::Request§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§fn and<P, B, E>(self, other: P) -> And<T, P>
fn and<P, B, E>(self, other: P) -> And<T, P>
Policy that returns Action::Follow only if self and other return
Action::Follow. Read more§impl<T, U> RamaTryFrom<T> for Uwhere
U: TryFrom<T>,
impl<T, U> RamaTryFrom<T> for Uwhere
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
fn rama_try_from(value: T) -> Result<U, <U as RamaTryFrom<T>>::Error>
§impl<T, U, CrateMarker> RamaTryInto<U, CrateMarker> for Twhere
U: RamaTryFrom<T, CrateMarker>,
impl<T, U, CrateMarker> RamaTryInto<U, CrateMarker> for Twhere
U: RamaTryFrom<T, CrateMarker>,
type Error = <U as RamaTryFrom<T, CrateMarker>>::Error
fn rama_try_into(self) -> Result<U, <U as RamaTryFrom<T, CrateMarker>>::Error>
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
§impl<V, F> ValueFormatter<&V> for F
impl<V, F> ValueFormatter<&V> for F
§fn format_value(writer: impl ValueWriter, value: &&V)
fn format_value(writer: impl ValueWriter, value: &&V)
value to writer§impl<V, F> ValueFormatter<Arc<V>> for F
impl<V, F> ValueFormatter<Arc<V>> for F
§fn format_value(writer: impl ValueWriter, value: &Arc<V>)
fn format_value(writer: impl ValueWriter, value: &Arc<V>)
value to writer§impl<V, F> ValueFormatter<Box<V>> for F
impl<V, F> ValueFormatter<Box<V>> for F
§fn format_value(writer: impl ValueWriter, value: &Box<V>)
fn format_value(writer: impl ValueWriter, value: &Box<V>)
value to writer§impl<V, F> ValueFormatter<Cow<'_, V>> for F
impl<V, F> ValueFormatter<Cow<'_, V>> for F
§fn format_value(writer: impl ValueWriter, value: &Cow<'_, V>)
fn format_value(writer: impl ValueWriter, value: &Cow<'_, V>)
value to writer§impl<V, F> ValueFormatter<Option<V>> for Fwhere
F: ValueFormatter<V> + ?Sized,
impl<V, F> ValueFormatter<Option<V>> for Fwhere
F: ValueFormatter<V> + ?Sized,
§fn format_value(writer: impl ValueWriter, value: &Option<V>)
fn format_value(writer: impl ValueWriter, value: &Option<V>)
value to writer