[−][src]Enum keyed_priority_queue::Entry
A view into a single entry in a queue, which may either be vacant or occupied.
This enum is constructed from the entry method on KeyedPriorityQueue.
Variants
Occupied(OccupiedEntry<'a, TKey, TPriority>)An occupied entry.
Vacant(VacantEntry<'a, TKey, TPriority>)A vacant entry.
Auto Trait Implementations
impl<'a, TKey, TPriority> RefUnwindSafe for Entry<'a, TKey, TPriority> where
TKey: RefUnwindSafe,
TPriority: RefUnwindSafe,
TKey: RefUnwindSafe,
TPriority: RefUnwindSafe,
impl<'a, TKey, TPriority> Send for Entry<'a, TKey, TPriority> where
TKey: Send,
TPriority: Send,
TKey: Send,
TPriority: Send,
impl<'a, TKey, TPriority> Sync for Entry<'a, TKey, TPriority> where
TKey: Sync,
TPriority: Sync,
TKey: Sync,
TPriority: Sync,
impl<'a, TKey, TPriority> Unpin for Entry<'a, TKey, TPriority>
impl<'a, TKey, TPriority> !UnwindSafe for Entry<'a, TKey, TPriority>
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, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
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>,