1//! Module for metadata contained in the header of the SWC file.
2use std::{fmt::Debug, str::FromStr};
34/// Trait for metadata which can be read and written from a block comment at the head of the file.
5pub trait Header: Clone + Debug + ToString + FromStr {}
67impl Header for String {}