1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
//! # AnifHeader - Trait Implementations //! //! This module contains trait implementations for `AnifHeader`. //! //! ## Implemented Traits //! //! - `Default` //! //! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs) use super::types::{AnifEndian, AnifHeader}; impl Default for AnifHeader { fn default() -> Self { Self { version: (1, 0), num_points: 0, x_start: 0.0, x_delta: 1.0, endian: AnifEndian::Little, title: String::new(), instrument: String::new(), date: String::new(), } } }