Home
last modified time | relevance | path

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

/external/rust/crates/vulkano/src/
Dextensions.rs141 pub enum SupportedExtensionsError { enum
148 impl error::Error for SupportedExtensionsError { implementation
158 impl fmt::Display for SupportedExtensionsError { implementation
173 impl From<OomError> for SupportedExtensionsError { implementation
175 fn from(err: OomError) -> SupportedExtensionsError { in from()
180 impl From<LoadingError> for SupportedExtensionsError { implementation
182 fn from(err: LoadingError) -> SupportedExtensionsError { in from()
187 impl From<Error> for SupportedExtensionsError { implementation
189 fn from(err: Error) -> SupportedExtensionsError { in from()
/external/rust/crates/vulkano/src/device/
Dextensions.rs123 ) -> Result<Self, SupportedExtensionsError> { in supported_by_device_raw() argument