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

A trait method that is only included in the crate with feature foo.

A trait method that is only included in the crate with features foo and bar.

Implementors