pub struct PlaneInfo {
pub index: usize,
pub width: usize,
pub height: usize,
pub bytes_per_row: usize,
}Expand description
Information about a single plane within an IOSurface
Fields§
§index: usizePlane index
width: usizeWidth in pixels
height: usizeHeight in pixels
bytes_per_row: usizeBytes per row
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PlaneInfo
impl RefUnwindSafe for PlaneInfo
impl Send for PlaneInfo
impl Sync for PlaneInfo
impl Unpin for PlaneInfo
impl UnwindSafe for PlaneInfo
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