#[repr(C)]pub struct aws_priority_queue_node {
pub current_index: usize,
}
Fields
current_index: usize
The current index of the node in question, or SIZE_MAX if the node has been removed.
Trait Implementations
sourceimpl Clone for aws_priority_queue_node
impl Clone for aws_priority_queue_node
sourcefn clone(&self) -> aws_priority_queue_node
fn clone(&self) -> aws_priority_queue_node
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for aws_priority_queue_node
impl Debug for aws_priority_queue_node
sourceimpl Default for aws_priority_queue_node
impl Default for aws_priority_queue_node
sourcefn default() -> aws_priority_queue_node
fn default() -> aws_priority_queue_node
Returns the “default value” for a type. Read more
sourceimpl PartialEq<aws_priority_queue_node> for aws_priority_queue_node
impl PartialEq<aws_priority_queue_node> for aws_priority_queue_node
sourcefn eq(&self, other: &aws_priority_queue_node) -> bool
fn eq(&self, other: &aws_priority_queue_node) -> bool
impl Copy for aws_priority_queue_node
impl Eq for aws_priority_queue_node
impl StructuralEq for aws_priority_queue_node
impl StructuralPartialEq for aws_priority_queue_node
Auto Trait Implementations
impl RefUnwindSafe for aws_priority_queue_node
impl Send for aws_priority_queue_node
impl Sync for aws_priority_queue_node
impl Unpin for aws_priority_queue_node
impl UnwindSafe for aws_priority_queue_node
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more