pub struct SurfaceTexture {
    index: u32,
    texture: Texture,
    acquire_semaphores: Arc<Mutex<SwapchainAcquireSemaphore>>,
    present_semaphores: Arc<Mutex<SwapchainPresentSemaphores>>,
}Fields§
§index: u32§texture: Texture§acquire_semaphores: Arc<Mutex<SwapchainAcquireSemaphore>>§present_semaphores: Arc<Mutex<SwapchainPresentSemaphores>>Trait Implementations§
Source§impl Borrow<Texture> for SurfaceTexture
 
impl Borrow<Texture> for SurfaceTexture
Source§impl Borrow<dyn DynTexture> for SurfaceTexture
 
impl Borrow<dyn DynTexture> for SurfaceTexture
Source§fn borrow(&self) -> &dyn DynTexture
 
fn borrow(&self) -> &dyn DynTexture
Immutably borrows from an owned value. Read more
Source§impl Debug for SurfaceTexture
 
impl Debug for SurfaceTexture
Source§impl DynResource for SurfaceTexture
 
impl DynResource for SurfaceTexture
impl DynSurfaceTexture for SurfaceTexture
Auto Trait Implementations§
impl Freeze for SurfaceTexture
impl !RefUnwindSafe for SurfaceTexture
impl Send for SurfaceTexture
impl Sync for SurfaceTexture
impl Unpin for SurfaceTexture
impl !UnwindSafe for SurfaceTexture
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