pub(crate) trait FileFormat {
const COMMENT_START: &'static str;
const COMMENT_END: &'static str;
const SEPARATOR: &'static str;
}
Required Associated Constants§
const COMMENT_START: &'static str
const COMMENT_END: &'static str
const SEPARATOR: &'static str
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.