Enum syn::Visibility[][src]

pub enum Visibility {
    Public(VisPublic),
    Crate(VisCrate),
    Restricted(VisRestricted),
    Inherited,
}

The visibility level of an item: inherited or pub or pub(restricted).

This type is available if Syn is built with the "derive" or "full" feature.

Syntax tree enum

This type is a syntax tree enum.

Variants

A public visibility level: pub.

This type is available if Syn is built with the "derive" or "full" feature.

A crate-level visibility: crate.

This type is available if Syn is built with the "derive" or "full" feature.

A visibility level restricted to some path: pub(self) or pub(super) or pub(crate) or pub(in some::module).

This type is available if Syn is built with the "derive" or "full" feature.

An inherited visibility, which usually means private.

Trait Implementations

impl Parse for Visibility
[src]

impl Debug for Visibility
[src]

Formats the value using the given formatter. Read more

impl Eq for Visibility
[src]

impl PartialEq for Visibility
[src]

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

This method tests for !=.

impl Hash for Visibility
[src]

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

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

impl Clone for Visibility
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<VisPublic> for Visibility
[src]

Performs the conversion.

impl From<VisCrate> for Visibility
[src]

Performs the conversion.

impl From<VisRestricted> for Visibility
[src]

Performs the conversion.

impl ToTokens for Visibility
[src]

Write self to the given TokenStream. Read more

Convert self directly into a TokenStream object. Read more

Auto Trait Implementations

impl !Send for Visibility

impl !Sync for Visibility