[][src]Trait bedrock::traits::Waitable

pub trait Waitable {
    fn wait(&self) -> Result<()>;
}

[feature = "Implements"] Supports blocking wait operation

Required methods

fn wait(&self) -> Result<()>

Wait for a object to become idle

Loading content...

Implementors

impl Waitable for Device[src]

impl Waitable for Fence[src]

fn wait(&self) -> Result<()>[src]

[feature = "Implements"] Wait for a fence to become signaled

Failures

On failure, this command returns

  • VK_ERROR_OUT_OF_HOST_MEMORY
  • VK_ERROR_OUT_OF_DEVICE_MEMORY
  • VK_ERROR_DEVICE_LOST

impl Waitable for Queue[src]

Loading content...