Struct syn::VisRestricted [] [src]

pub struct VisRestricted {
    pub pub_token: Pub,
    pub paren_token: Paren,
    pub in_token: Option<In>,
    pub path: Box<Path>,
}

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.

Fields

Trait Implementations

impl ToTokens for VisRestricted
[src]

Write self to the given TokenStream. Read more

Convert self directly into a TokenStream object. Read more

impl Clone for VisRestricted
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<VisRestricted> for Visibility
[src]

Performs the conversion.

Auto Trait Implementations

impl !Send for VisRestricted

impl !Sync for VisRestricted