Home
last modified time | relevance | path

Searched refs:QueryPoolCreationError (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/
Dquery.rs53 ) -> Result<Arc<QueryPool>, QueryPoolCreationError> { in new() argument
67 return Err(QueryPoolCreationError::PipelineStatisticsQueryFeatureNotEnabled); in new()
233 pub enum QueryPoolCreationError { enum
240 impl Error for QueryPoolCreationError { implementation
243 QueryPoolCreationError::OomError(err) => Some(err), in source()
249 impl Display for QueryPoolCreationError { implementation
255 QueryPoolCreationError::OomError(_) => "not enough memory available", in fmt()
256 QueryPoolCreationError::PipelineStatisticsQueryFeatureNotEnabled => { in fmt()
265 impl From<OomError> for QueryPoolCreationError { implementation
266 fn from(err: OomError) -> QueryPoolCreationError { in from() argument
[all …]