#[repr(C)]
pub union HPixelImage {
pub b: *mut u8,
pub z: *mut u8,
pub d: *mut u8,
pub i: *mut i8,
pub l: *mut i32,
pub i8_: *mut i64,
pub f: *mut f32,
pub vf: HVFPixel,
pub c: *mut HComplexPixel,
pub s: HInt2Pixel,
pub u: HUInt2Pixel,
}Fields§
§b: *mut u8§z: *mut u8§d: *mut u8§i: *mut i8§l: *mut i32§i8_: *mut i64§f: *mut f32§vf: HVFPixel§c: *mut HComplexPixel§s: HInt2Pixel§u: HUInt2PixelTrait Implementations§
Source§impl Clone for HPixelImage
impl Clone for HPixelImage
Source§fn clone(&self) -> HPixelImage
fn clone(&self) -> HPixelImage
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 moreimpl Copy for HPixelImage
Auto Trait Implementations§
impl Freeze for HPixelImage
impl RefUnwindSafe for HPixelImage
impl !Send for HPixelImage
impl !Sync for HPixelImage
impl Unpin for HPixelImage
impl UnwindSafe for HPixelImage
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