#[repr(C)]pub struct CMFloatBitmap {
pub version: c_ulong,
pub buffers: [*mut f32; 16],
pub height: usize,
pub width: usize,
pub rowStride: isize,
pub colStride: isize,
pub space: OSType,
pub flags: CMFloatBitmapFlags,
}Expand description
Apple SDK struct CMFloatBitmap.
Fields§
§version: c_ulong§buffers: [*mut f32; 16]§height: usize§width: usize§rowStride: isize§colStride: isize§space: OSType§flags: CMFloatBitmapFlagsTrait Implementations§
Source§impl Clone for CMFloatBitmap
impl Clone for CMFloatBitmap
Source§fn clone(&self) -> CMFloatBitmap
fn clone(&self) -> CMFloatBitmap
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CMFloatBitmap
Auto Trait Implementations§
impl !Send for CMFloatBitmap
impl !Sync for CMFloatBitmap
impl Freeze for CMFloatBitmap
impl RefUnwindSafe for CMFloatBitmap
impl Unpin for CMFloatBitmap
impl UnsafeUnpin for CMFloatBitmap
impl UnwindSafe for CMFloatBitmap
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