Trait rustdoc_features_example::a::ATrait
[−]
[src]
pub trait ATrait { fn foo(&self) { ... } fn foobar(&self) { ... } }
A public trait that is always included in the crate.
Provided Methods
fn foo(&self)
foo
A trait method that is only included in the crate with feature foo
.
fn foobar(&self)
bar, foo
A trait method that is only included in the crate with features foo
and bar
.
Implementors
impl ATrait for A