Skip to main content

oxiphysics_gpu/compute/
timelinesemaphore_traits.rs

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