pub enum ReadbackPayload {
RGB32U(Vec<Vector3<u32>>),
RGBA32U(Vec<Vector4<u32>>),
R32U(Vec<u32>),
RGB32F(Vec<Vector3<f32>>),
RGBA32F(Vec<Vector4<f32>>),
R32F(Vec<f32>),
Depth(Vec<f32>),
}Expand description
Readback surface
Variants§
RGB32U(Vec<Vector3<u32>>)
RGBA32U(Vec<Vector4<u32>>)
R32U(Vec<u32>)
RGB32F(Vec<Vector3<f32>>)
RGBA32F(Vec<Vector4<f32>>)
R32F(Vec<f32>)
Depth(Vec<f32>)
Auto Trait Implementations§
impl Freeze for ReadbackPayload
impl RefUnwindSafe for ReadbackPayload
impl Send for ReadbackPayload
impl Sync for ReadbackPayload
impl Unpin for ReadbackPayload
impl UnsafeUnpin for ReadbackPayload
impl UnwindSafe for ReadbackPayload
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