Struct alloc::binary_heap::BinaryHeapPlace
[−]
[src]
pub struct BinaryHeapPlace<'a, T: 'a> where
T: Clone + Ord, { /* fields omitted */ }
🔬 This is a nightly-only experimental API. (collection_placement
#30172)
placement protocol is subject to change
Trait Implementations
impl<'a, T: Clone + Ord + Debug> Debug for BinaryHeapPlace<'a, T>
[src]
fn fmt(&self, f: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl<'a, T> Place<T> for BinaryHeapPlace<'a, T> where
T: Clone + Ord,
[src]
T: Clone + Ord,
fn pointer(&mut self) -> *mut T
[src]
Returns the address where the input value will be written. Note that the data at this address is generally uninitialized, and thus one should use ptr::write
for initializing it. Read more
impl<'a, T> InPlace<T> for BinaryHeapPlace<'a, T> where
T: Clone + Ord,
[src]
T: Clone + Ord,