pub trait ReadMagic {
type MagicType;
const MAGIC: Self::MagicType;
}
Expand description
Types that require a magic number when parsed.
This trait is automatically defined on derived types with a magic directive.
Required Associated Types§
Required Associated Constants§
Object Safety§
This trait is not object safe.