Struct sierra::Queue[][src]

pub struct Queue { /* fields omitted */ }

Implementations

impl Queue[src]

pub fn id(&self) -> QueueId[src]

pub fn create_encoder(&mut self) -> Result<Encoder<'static>, OutOfMemory>[src]

pub fn submit(
    &mut self,
    wait: &[(PipelineStageFlags, Semaphore)],
    cbuf: CommandBuffer,
    signal: &[Semaphore],
    fence: Option<&Fence>
)
[src]

pub fn submit_no_semaphores(
    &mut self,
    buffer: CommandBuffer,
    fence: Option<&Fence>
)
[src]

pub fn present(
    &mut self,
    image: SwapchainImage
) -> Result<PresentOk, PresentError>
[src]

pub fn wait_for_idle(&self) -> Result<(), OutOfMemory>[src]

Trait Implementations

impl Debug for Queue[src]

Auto Trait Implementations

impl !RefUnwindSafe for Queue

impl Send for Queue

impl Sync for Queue

impl Unpin for Queue

impl !UnwindSafe for Queue

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.