Struct rustdoc_features_example::foo::Foo
foo
[] [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
[src]

[src]

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

[src]

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

Trait Implementations

impl FooTrait for Foo
[src]

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

[src]

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

[src]

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

impl FooBarTrait for Foo
bar
[src]

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

[src]

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

[src]

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