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