pub trait Catalog {
type Class<'a>;
// Required methods
fn default<'a>() -> Self::Class<'a>;
fn style(&self, class: &Self::Class<'_>) -> Style;
}
Available on crate feature
qr_code
only.Expand description
The theme catalog of a QRCode
.
Required Associated Types§
Required Methods§
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.