Enum clang::documentation::ParameterDirection [] [src]

#[repr(C)]
pub enum ParameterDirection { In, Out, InOut, }

Indicates the parameter passing direction for a \param command.

Variants

Indicates the parameter is an input parameter.

Indicates the parameter is an output parameter.

Indicates the parameter is both an input and an output parameter.

Trait Implementations

impl Copy for ParameterDirection
[src]

impl Clone for ParameterDirection
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ParameterDirection
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for ParameterDirection
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Eq for ParameterDirection
[src]

impl Hash for ParameterDirection
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations