pub struct Overflows<T, TC>(TC, PhantomData<T>);
Expand description
Columnar container for Overflowing
.
Tuple Fields§
§0: TC
§1: PhantomData<T>
Trait Implementations§
Source§impl<T: Columnar + Copy + Send, TC: Container<T>> Container<Overflowing<T>> for Overflows<T, TC>
impl<T: Columnar + Copy + Send, TC: Container<T>> Container<Overflowing<T>> for Overflows<T, TC>
Source§impl<'de, T, TC> Deserialize<'de> for Overflows<T, TC>where
TC: Deserialize<'de>,
impl<'de, T, TC> Deserialize<'de> for Overflows<T, TC>where
TC: Deserialize<'de>,
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
Source§impl<T: Copy, TC: IndexAs<T>> Index for Overflows<T, TC>where
Overflowing<T>: From<T>,
impl<T: Copy, TC: IndexAs<T>> Index for Overflows<T, TC>where
Overflowing<T>: From<T>,
Source§impl<T: Copy, TC: Push<T>> Push<&Overflowing<T>> for Overflows<T, TC>
impl<T: Copy, TC: Push<T>> Push<&Overflowing<T>> for Overflows<T, TC>
Source§fn push(&mut self, item: &Overflowing<T>)
fn push(&mut self, item: &Overflowing<T>)
Pushes an item onto
self
.Source§fn extend(&mut self, iter: impl IntoIterator<Item = T>)
fn extend(&mut self, iter: impl IntoIterator<Item = T>)
Pushes elements of an iterator onto
self
.Source§impl<T: Copy, TC: Push<T>> Push<Overflowing<T>> for Overflows<T, TC>
impl<T: Copy, TC: Push<T>> Push<Overflowing<T>> for Overflows<T, TC>
Source§fn push(&mut self, item: Overflowing<T>)
fn push(&mut self, item: Overflowing<T>)
Pushes an item onto
self
.Source§fn extend(&mut self, iter: impl IntoIterator<Item = T>)
fn extend(&mut self, iter: impl IntoIterator<Item = T>)
Pushes elements of an iterator onto
self
.impl<T: Copy, TC: Copy> Copy for Overflows<T, TC>
impl<T: Eq, TC: Eq> Eq for Overflows<T, TC>
impl<T, TC> StructuralPartialEq for Overflows<T, TC>
Auto Trait Implementations§
impl<T, TC> Freeze for Overflows<T, TC>where
TC: Freeze,
impl<T, TC> RefUnwindSafe for Overflows<T, TC>where
TC: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, TC> Send for Overflows<T, TC>
impl<T, TC> Sync for Overflows<T, TC>
impl<T, TC> Unpin for Overflows<T, TC>
impl<T, TC> UnwindSafe for Overflows<T, TC>where
TC: UnwindSafe,
T: UnwindSafe,
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> 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<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> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
Source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
The method of
std::ops::AddAssign
, for types that do not implement AddAssign
.