Skip to main content

oxiphysics_gpu/neural_compute/
feedforwardnet_traits.rs

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