pub struct TileDecodeJob<'i, 'o> {
pub input: &'i [u8],
pub out: &'o mut [u8],
pub stride: usize,
}Expand description
One full-tile decode request.
Fields§
§input: &'i [u8]Compressed tile bytes.
out: &'o mut [u8]Caller-owned output buffer for this tile.
stride: usizeDistance in bytes between output rows.
Auto Trait Implementations§
impl<'i, 'o> !UnwindSafe for TileDecodeJob<'i, 'o>
impl<'i, 'o> Freeze for TileDecodeJob<'i, 'o>
impl<'i, 'o> RefUnwindSafe for TileDecodeJob<'i, 'o>
impl<'i, 'o> Send for TileDecodeJob<'i, 'o>
impl<'i, 'o> Sync for TileDecodeJob<'i, 'o>
impl<'i, 'o> Unpin for TileDecodeJob<'i, 'o>
impl<'i, 'o> UnsafeUnpin for TileDecodeJob<'i, 'o>
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