oxiphysics_gpu/pipeline/asynccomputequeue_traits.rs
1//! # AsyncComputeQueue - Trait Implementations
2//!
3//! This module contains trait implementations for `AsyncComputeQueue`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Default`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10use super::types::AsyncComputeQueue;
11
12impl Default for AsyncComputeQueue {
13 fn default() -> Self {
14 Self::new()
15 }
16}