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
pub_token: Pub
paren_token: Paren
in_token: Option<In>
path: Box<Path>
Trait Implementations
impl ToTokens for VisRestricted[src]
fn to_tokens(&self, tokens: &mut Tokens)[src]
Write self to the given Tokens. Read more
fn into_tokens(self) -> Tokens[src]
Convert self directly into a Tokens object. Read more
impl Clone for VisRestricted[src]
fn clone(&self) -> VisRestricted[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl From<VisRestricted> for Visibility[src]
fn from(e: VisRestricted) -> Visibility[src]
Performs the conversion.