pub trait ProfileData: Serialize + DeserializeOwned {
const FILENAME: &'static str;
const MODE: Option<u32> = None;
}Expand description
A type that can be stored in a profile directory.
Required Associated Constants§
Provided Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".