pub trait Type {
// Required method
fn type_string() -> &'static str;
}Expand description
Trait that needs implementing for all supported SigMF data types.
Required Methods§
Sourcefn type_string() -> &'static str
fn type_string() -> &'static str
Return full type, or endianness prefix of the type.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".