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