Hello , is it possible to set a fixed length for a string field ? I would need something like this : ```rust #[derive(Protocol, Debug, Clone, PartialEq, Eq)] pub struct DatFile { #[protocol(fixed_lenght(8))] game_version: String, } ```