1
2
3
4
5
use std::{fmt::Debug, str::FromStr};

pub trait Header: Clone + Debug + ToString + FromStr {}

impl Header for String {}