pub trait Trait {
type X;
const Y: u32;
// Required method
fn fooo();
// Provided method
fn foo() { ... }
}
👎Deprecated: Whatever
Foo::a_method
Available on crate feature
foo-method
only.Required Associated Types§
sourcetype X
type X
👎Deprecated: Whatever
Foo::a_method
Required Associated Constants§
sourceconst Y: u32
const Y: u32
👎Deprecated: Whatever
Foo::a_method
Required Methods§
sourcefn fooo()
fn fooo()
👎Deprecated: Whatever
Foo::a_method