#[repr(C)]pub struct NodePtResPack {
pub rb: u32,
pub left: *mut NodePtResPack,
pub right: *mut NodePtResPack,
pub data: *mut ResPack,
}Fields§
§rb: u32§left: *mut NodePtResPack§right: *mut NodePtResPack§data: *mut ResPackTrait Implementations§
Source§impl Clone for NodePtResPack
impl Clone for NodePtResPack
Source§fn clone(&self) -> NodePtResPack
fn clone(&self) -> NodePtResPack
Returns a duplicate 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 NodePtResPack
impl Debug for NodePtResPack
impl Copy for NodePtResPack
Auto Trait Implementations§
impl Freeze for NodePtResPack
impl RefUnwindSafe for NodePtResPack
impl !Send for NodePtResPack
impl !Sync for NodePtResPack
impl Unpin for NodePtResPack
impl UnwindSafe for NodePtResPack
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