Home
last modified time | relevance | path

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

/external/rust/crates/vulkano/src/image/
Dview.rs57 pub fn new(image: I) -> Result<Arc<ImageView<I>>, ImageViewCreationError> { in new() argument
144 pub fn build(self) -> Result<Arc<ImageView<I>>, ImageViewCreationError> { in build() argument
232 pub enum ImageViewCreationError { enum
247 impl error::Error for ImageViewCreationError { implementation
257 impl fmt::Display for ImageViewCreationError { implementation
276 impl From<OomError> for ImageViewCreationError { implementation
278 fn from(err: OomError) -> ImageViewCreationError { in from()