std::collections::binary_heap::PeekMut

Struct std::collections::binary_heap::PeekMut

pub struct PeekMut<'a, T> where    T: 'a + Ord,  { /* fields omitted */ }

Structure wrapping a mutable reference to the greatest item on a BinaryHeap.

This struct is created by the peek_mut method on BinaryHeap. See its documentation for more.

Methods

impl<'a, T> PeekMut<'a, T> where
    T: Ord
[src]

Removes the peeked value from the heap and returns it.

Trait Implementations

impl<'a, T> Debug for PeekMut<'a, T> where
    T: Ord + Debug
1.17.0
[src]

Formats the value using the given formatter.

impl<'a, T> Drop for PeekMut<'a, T> where
    T: Ord
[src]

A method called when the value goes out of scope. Read more

impl<'a, T> DerefMut for PeekMut<'a, T> where
    T: Ord
[src]

The method called to mutably dereference a value

impl<'a, T> Deref for PeekMut<'a, T> where
    T: Ord
[src]

The resulting type after dereferencing

The method called to dereference a value

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/collections/binary_heap/struct.PeekMut.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部