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