Struct rustdoc_features_example::a::A [] [src]

pub struct A {
    pub a: u8,
    pub foo: u8,
    pub foobar: u8,
}

A public struct that is always included in the crate.

Fields

A public field that is always included in the crate.

A public field that is only included in the crate with feature foo.

A public field that is only included in the crate with features foo and bar.

Methods

impl A
[src]

Some impls (from a) that are always included in the crate.

A public method that is always included in the crate.

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

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

impl A
bar
[src]

Some impls (from bar) that are always included in the crate. (if the parent module is)

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 foo. (if the parent module is)

Trait Implementations

impl Copy for A
[src]

impl ATrait for A
[src]

A trait impl that is always included in the crate.

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

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

impl FooTrait for A
foo
[src]

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

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 A
foo, bar
[src]

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

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)

impl Clone for A
clone
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more