Struct rustdoc_features_example::foo::Foofoo [] [src]

pub struct Foo {
    pub foo: u8,
    pub foobar: u8,
}

A public struct that is always included in the crate. (if the parent module is)

Fields

A public field that is always included in the crate. (if the parent module is)

A public field that is only included in the crate with feature bar. (if the parent module is)

Methods

impl Foo
foo
[src]

A public method that is always included in the crate. (if the parent module is)

A public method that is only included in the crate with feature bar. (if the parent module is)

Trait Implementations

impl FooTrait for Foo
foo
[src]

A trait impl that is always included in the crate. (if the parent module is)

A trait method impl that is always included in the crate. (if the parent trait is)

A trait method impl that is only included in the crate with feature bar. (if the parent trait is)

impl FooBarTrait for Foo
foo, bar
[src]

A trait impl that is only included in the crate with feature bar. (if the parent module is)

A trait method impl that is always included in the crate. (if the parent trait is)

A trait method impl that is always included in the crate. (if the parent trait is)