pub trait HasUniversal {
// Required methods
fn universal(&self) -> &UniversalOptions;
fn universal_mut(&mut self) -> &mut UniversalOptions;
}Expand description
Implemented by every backend-specific options struct.
Gives the UniversalOptionsExt blanket impl access to the embedded
UniversalOptions.
Required Methods§
fn universal(&self) -> &UniversalOptions
fn universal_mut(&mut self) -> &mut UniversalOptions
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".