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
Public(VisPublic)A public visibility level: pub.
This type is available if Syn is built with the "derive" or
"full" feature.
Crate(VisCrate)A crate-level visibility: crate.
This type is available if Syn is built with the "derive" or
"full" feature.
Restricted(VisRestricted)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.
InheritedAn inherited visibility, which usually means private.
Trait Implementations
impl Synom for Visibility[src]
fn parse(i: Cursor) -> PResult<Self>[src]
fn description() -> Option<&'static str>[src]
A short name of the type being parsed. Read more
impl Clone for Visibility[src]
fn clone(&self) -> Visibility[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<VisPublic> for Visibility[src]
fn from(e: VisPublic) -> Visibility[src]
Performs the conversion.
impl From<VisCrate> for Visibility[src]
fn from(e: VisCrate) -> Visibility[src]
Performs the conversion.
impl From<VisRestricted> for Visibility[src]
fn from(e: VisRestricted) -> Visibility[src]
Performs the conversion.