#[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 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 moreSource§impl Debug for AHardwareBufferPlanes
impl Debug for AHardwareBufferPlanes
impl Copy for AHardwareBufferPlanes
Auto Trait Implementations§
impl Freeze for AHardwareBufferPlanes
impl RefUnwindSafe for AHardwareBufferPlanes
impl !Send for AHardwareBufferPlanes
impl !Sync for AHardwareBufferPlanes
impl Unpin 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