pub struct BackendCount(/* private fields */);Expand description
Number of backend servers in the router.
Implementations§
Source§impl BackendCount
impl BackendCount
Sourcepub const MAX: usize = BackendId::MAX_COUNT
pub const MAX: usize = BackendId::MAX_COUNT
Maximum backend count that fits the article availability bitmap.
Sourcepub const fn try_new(count: usize) -> Option<Self>
pub const fn try_new(count: usize) -> Option<Self>
Construct a bounded backend count from a raw length.
Sourcepub fn backend_ids(self) -> impl ExactSizeIterator<Item = BackendId>
pub fn backend_ids(self) -> impl ExactSizeIterator<Item = BackendId>
Iterate every valid backend ID in this bounded count.
Trait Implementations§
Source§impl Clone for BackendCount
impl Clone for BackendCount
Source§fn clone(&self) -> BackendCount
fn clone(&self) -> BackendCount
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 moreimpl Copy for BackendCount
Source§impl Debug for BackendCount
impl Debug for BackendCount
Source§impl Display for BackendCount
impl Display for BackendCount
impl Eq for BackendCount
Source§impl Ord for BackendCount
impl Ord for BackendCount
Source§fn cmp(&self, other: &BackendCount) -> Ordering
fn cmp(&self, other: &BackendCount) -> 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 BackendCount
impl PartialEq for BackendCount
Source§impl PartialEq<usize> for BackendCount
impl PartialEq<usize> for BackendCount
Source§impl PartialOrd for BackendCount
impl PartialOrd for BackendCount
Source§impl PartialOrd<usize> for BackendCount
impl PartialOrd<usize> for BackendCount
impl StructuralPartialEq for BackendCount
Auto Trait Implementations§
impl Freeze for BackendCount
impl RefUnwindSafe for BackendCount
impl Send for BackendCount
impl Sync for BackendCount
impl Unpin for BackendCount
impl UnsafeUnpin for BackendCount
impl UnwindSafe for BackendCount
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,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§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> ⓘ
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of
ToCompactString::to_compact_string() Read moreSource§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString. Read more