Struct pgrx_pg_sys::pairingheap_node
source · #[repr(C)]pub struct pairingheap_node {
pub first_child: *mut pairingheap_node,
pub next_sibling: *mut pairingheap_node,
pub prev_or_parent: *mut pairingheap_node,
}
Fields§
§first_child: *mut pairingheap_node
§next_sibling: *mut pairingheap_node
§prev_or_parent: *mut pairingheap_node
Trait Implementations§
source§impl Clone for pairingheap_node
impl Clone for pairingheap_node
source§fn clone(&self) -> pairingheap_node
fn clone(&self) -> pairingheap_node
Returns a copy of the value. Read more
1.0.0 · 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 pairingheap_node
impl Debug for pairingheap_node
source§impl Default for pairingheap_node
impl Default for pairingheap_node
impl Copy for pairingheap_node
Auto Trait Implementations§
impl Freeze for pairingheap_node
impl RefUnwindSafe for pairingheap_node
impl !Send for pairingheap_node
impl !Sync for pairingheap_node
impl Unpin for pairingheap_node
impl UnwindSafe for pairingheap_node
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