[−][src]Struct opentelemetry::sdk::trace::evicted_queue::EvictedQueue
This queue maintains an ordered list of elements, and a count of dropped elements. Elements are removed from the queue in a first in first out fashion.
Implementations
impl<T> EvictedQueue<T>
[src]
pub fn new(capacity: u32) -> Self
[src]
Create a new EvictedQueue
with a given capacity.
pub fn append_vec(&mut self, other: &mut Vec<T>)
[src]
Moves all the elements of other into self, leaving other empty.
pub fn is_empty(&self) -> bool
[src]
Returns true
if the EvictedQueue
is empty.
pub fn iter(&self) -> Iter<T>
[src]
Returns a front-to-back iterator.
pub fn len(&self) -> usize
[src]
Returns the number of elements in the EvictedQueue
.
Trait Implementations
impl<T: Clone> Clone for EvictedQueue<T>
[src]
fn clone(&self) -> EvictedQueue<T>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T: Debug> Debug for EvictedQueue<T>
[src]
impl<T> Extend<T> for EvictedQueue<T>
[src]
fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I)
[src]
fn extend_one(&mut self, item: A)
[src]
fn extend_reserve(&mut self, additional: usize)
[src]
impl<T> IntoIterator for EvictedQueue<T>
[src]
type Item = T
The type of the elements being iterated over.
type IntoIter = IntoIter<T>
Which kind of iterator are we turning this into?
fn into_iter(self) -> Self::IntoIter
[src]
Consumes the EvictedQueue
into a front-to-back iterator yielding elements by
value.
impl<'a, T> IntoIterator for &'a EvictedQueue<T>
[src]
type Item = &'a T
The type of the elements being iterated over.
type IntoIter = Iter<'a, T>
Which kind of iterator are we turning this into?
fn into_iter(self) -> Self::IntoIter
[src]
impl<'a, T> IntoIterator for &'a mut EvictedQueue<T>
[src]
type Item = &'a mut T
The type of the elements being iterated over.
type IntoIter = IterMut<'a, T>
Which kind of iterator are we turning this into?
fn into_iter(self) -> Self::IntoIter
[src]
impl<T: PartialEq> PartialEq<EvictedQueue<T>> for EvictedQueue<T>
[src]
fn eq(&self, other: &EvictedQueue<T>) -> bool
[src]
fn ne(&self, other: &EvictedQueue<T>) -> bool
[src]
impl<T> StructuralPartialEq for EvictedQueue<T>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for EvictedQueue<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for EvictedQueue<T> where
T: Send,
T: Send,
impl<T> Sync for EvictedQueue<T> where
T: Sync,
T: Sync,
impl<T> Unpin for EvictedQueue<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for EvictedQueue<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T> FutureExt for T
[src]
fn with_context(self, otel_cx: OpenTelemetryContext) -> WithContext<Self>
[src]
fn with_current_context(self) -> WithContext<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<I> IntoIterator for I where
I: Iterator,
[src]
I: Iterator,
type Item = <I as Iterator>::Item
The type of the elements being iterated over.
type IntoIter = I
Which kind of iterator are we turning this into?
fn into_iter(self) -> I
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,