pub trait DefaultOpenOptions<T> {
// Required method
fn default_open_options() -> T;
}Expand description
A structure with a static [OpenOptions].
Structures implementing this trait with T being log::OpenOptions
or rotate::OpenOptions gets Repair implemented automatically.
Required Methods§
fn default_open_options() -> T
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.