pub struct FaceRow<'a> { /* private fields */ }Expand description
One row of a bake’s output: the RGBA texels of row y on cube face face.
Handed out by face_rows and filled by CubeBake::compute_row. A row
borrows only its own texels, so the whole set can be worked through in any
order and on any thread.
Auto Trait Implementations§
impl<'a> !UnwindSafe for FaceRow<'a>
impl<'a> Freeze for FaceRow<'a>
impl<'a> RefUnwindSafe for FaceRow<'a>
impl<'a> Send for FaceRow<'a>
impl<'a> Sync for FaceRow<'a>
impl<'a> Unpin for FaceRow<'a>
impl<'a> UnsafeUnpin for FaceRow<'a>
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