Enum clang::Accessibility[][src]

#[repr(C)]
pub enum Accessibility { Private, Protected, Public, }

Indicates the accessibility of a declaration or base class specifier.

Variants

The declaration or base class specifier is private.

The declaration or base class specifier is protected.

The declaration or base class specifier is public.

Trait Implementations

impl Copy for Accessibility
[src]

impl Clone for Accessibility
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Accessibility
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Accessibility
[src]

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

This method tests for !=.

impl Eq for Accessibility
[src]

impl Hash for Accessibility
[src]

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

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

Auto Trait Implementations