castep_param_io/param/general/print_clock.rs
1use castep_param_derive::KeywordDisplay;
2use serde::{Deserialize, Serialize};
3
4#[derive(
5 Debug, Hash, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize, KeywordDisplay,
6)]
7#[keyword_display(field="PRINT_CLOCK",from=bool,value=bool, default_value=true)]
8pub struct PrintClock(bool);