#[repr(C)]pub struct AHardwareBufferPlanes {
pub planeCount: u32,
pub planes: [AHardwareBufferPlane; 4],
}Expand description
Holds all image planes that contain the pixel data.
Fields§
§planeCount: u32< Number of distinct planes
planes: [AHardwareBufferPlane; 4]< Array of image planes
Trait Implementations§
Source§impl Clone for AHardwareBufferPlanes
impl Clone for AHardwareBufferPlanes
Source§fn clone(&self) -> AHardwareBufferPlanes
fn clone(&self) -> AHardwareBufferPlanes
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 AHardwareBufferPlanes
Auto Trait Implementations§
impl !Send for AHardwareBufferPlanes
impl !Sync for AHardwareBufferPlanes
impl Freeze for AHardwareBufferPlanes
impl RefUnwindSafe for AHardwareBufferPlanes
impl Unpin for AHardwareBufferPlanes
impl UnsafeUnpin for AHardwareBufferPlanes
impl UnwindSafe for AHardwareBufferPlanes
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