pub struct TileScaledDecodeJob<'i, 'o> {
pub input: &'i [u8],
pub out: &'o mut [u8],
pub stride: usize,
pub scale: Downscale,
}Expand description
One scaled 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.
scale: DownscaleDownscale factor applied to the full-tile decode.
Auto Trait Implementations§
impl<'i, 'o> !UnwindSafe for TileScaledDecodeJob<'i, 'o>
impl<'i, 'o> Freeze for TileScaledDecodeJob<'i, 'o>
impl<'i, 'o> RefUnwindSafe for TileScaledDecodeJob<'i, 'o>
impl<'i, 'o> Send for TileScaledDecodeJob<'i, 'o>
impl<'i, 'o> Sync for TileScaledDecodeJob<'i, 'o>
impl<'i, 'o> Unpin for TileScaledDecodeJob<'i, 'o>
impl<'i, 'o> UnsafeUnpin for TileScaledDecodeJob<'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