pub struct RowInfo<T> {
pub x1: i32,
pub x2: i32,
pub ptr: *mut T,
}Expand description
Information about a row in a rendering buffer.
Port of C++ row_info<T> — used with raw pointers for pixel buffer access.
Fields§
§x1: i32§x2: i32§ptr: *mut TImplementations§
Trait Implementations§
impl<T: Copy> Copy for RowInfo<T>
Auto Trait Implementations§
impl<T> Freeze for RowInfo<T>
impl<T> RefUnwindSafe for RowInfo<T>where
T: RefUnwindSafe,
impl<T> !Send for RowInfo<T>
impl<T> !Sync for RowInfo<T>
impl<T> Unpin for RowInfo<T>
impl<T> UnwindSafe for RowInfo<T>where
T: RefUnwindSafe,
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