pub trait ConventionMarker: 'static + Sized {
type Extra: 'static + Eq + Hash + Clone + Debug;
// Required method
fn value() -> Convention;
}
Expand description
Required Associated Types§
Required Methods§
sourcefn value() -> Convention
fn value() -> Convention
Get the Convention
enum value.
Object Safety§
This trait is not object safe.