pub enum QueueCapacity {
Bounded(usize),
Unbounded,
}
Variants§
Trait Implementations§
Source§impl Clone for QueueCapacity
impl Clone for QueueCapacity
Source§fn clone(&self) -> QueueCapacity
fn clone(&self) -> QueueCapacity
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for QueueCapacity
impl Debug for QueueCapacity
impl Copy for QueueCapacity
Auto Trait Implementations§
impl Freeze for QueueCapacity
impl RefUnwindSafe for QueueCapacity
impl Send for QueueCapacity
impl Sync for QueueCapacity
impl Unpin for QueueCapacity
impl UnwindSafe for QueueCapacity
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