pub trait TryReverseQueue: TryQueue {
// Required method
fn try_pop_back(&self) -> Option<Self::Item>;
}Expand description
A queue that can try to be read in reverse.
Required Methods§
Sourcefn try_pop_back(&self) -> Option<Self::Item>
fn try_pop_back(&self) -> Option<Self::Item>
Non blocking version of receive_back
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".