pub struct BindingSlotSet { /* private fields */ }Expand description
Small sorted binding-slot set optimized for dispatch-policy hot paths.
Dispatch summaries usually contain fewer than eight bindings. Keeping slots inline avoids allocating two tree nodes per arm while preserving deterministic equality/debug output and O(log n) membership checks.
Implementations§
Trait Implementations§
Source§impl Clone for BindingSlotSet
impl Clone for BindingSlotSet
Source§fn clone(&self) -> BindingSlotSet
fn clone(&self) -> BindingSlotSet
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 moreSource§impl Debug for BindingSlotSet
impl Debug for BindingSlotSet
Source§impl Default for BindingSlotSet
impl Default for BindingSlotSet
Source§fn default() -> BindingSlotSet
fn default() -> BindingSlotSet
Returns the “default value” for a type. Read more
impl Eq for BindingSlotSet
Source§impl FromIterator<u32> for BindingSlotSet
impl FromIterator<u32> for BindingSlotSet
Source§impl PartialEq for BindingSlotSet
impl PartialEq for BindingSlotSet
Source§fn eq(&self, other: &BindingSlotSet) -> bool
fn eq(&self, other: &BindingSlotSet) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BindingSlotSet
Auto Trait Implementations§
impl Freeze for BindingSlotSet
impl RefUnwindSafe for BindingSlotSet
impl Send for BindingSlotSet
impl Sync for BindingSlotSet
impl Unpin for BindingSlotSet
impl UnsafeUnpin for BindingSlotSet
impl UnwindSafe for BindingSlotSet
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.