pub enum FrameSync<'a, B: Backend> {
    Semaphore(&'a B::Semaphore),
    Fence(&'a B::Fence),
}
Expand description

Synchronization primitives which will be signalled once a frame got retrieved.

The semaphore or fence must be unsignalled.

Variants

Semaphore(&'a B::Semaphore)

Semaphore used for synchronization.

Will be signaled once the frame backbuffer is available.

Fence(&'a B::Fence)

Fence used for synchronization.

Will be signaled once the frame backbuffer is available.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.