Home
last modified time | relevance | path

Searched defs:SemaphoreError (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/vulkano/src/sync/semaphore/
Dsemaphore.rs92 pub fn build(self) -> Result<Semaphore<D>, SemaphoreError> { in build() argument
135 pub fn from_pool(device: D) -> Result<Semaphore<D>, SemaphoreError> { in from_pool() argument
152 pub fn alloc(device: D) -> Result<Semaphore<D>, SemaphoreError> { in alloc() argument
159 pub fn alloc_with_exportable_fd(device: D) -> Result<Semaphore<D>, SemaphoreError> { in alloc_with_exportable_fd() argument
166 pub fn export_opaque_fd(&self) -> Result<File, SemaphoreError> { in export_opaque_fd() argument
234 pub enum SemaphoreError { enum
241 impl fmt::Display for SemaphoreError { implementation
252 impl From<Error> for SemaphoreError { implementation
254 fn from(err: Error) -> SemaphoreError { in from()
264 impl std::error::Error for SemaphoreError { implementation
[all …]
/external/rust/crates/vulkano/src/swapchain/
Dswapchain.rs1375 SemaphoreError(SemaphoreError), enumerator