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]
impl Synom for Visibilityfn parse(i: Cursor) -> PResult<Self>[src]
fn parse(i: Cursor) -> PResult<Self>fn description() -> Option<&'static str>[src]
fn description() -> Option<&'static str>A short name of the type being parsed. Read more
impl Debug for Visibility[src]
impl Debug for Visibilityfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Eq for Visibility[src]
impl Eq for Visibilityimpl PartialEq for Visibility[src]
impl PartialEq for Visibilityfn eq(&self, other: &Visibility) -> bool[src]
fn eq(&self, other: &Visibility) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Visibility) -> bool[src]
fn ne(&self, other: &Visibility) -> boolThis method tests for !=.
impl Hash for Visibility[src]
impl Hash for Visibilityfn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Clone for Visibility[src]
impl Clone for Visibilityfn clone(&self) -> Visibility[src]
fn clone(&self) -> VisibilityReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl From<VisPublic> for Visibility[src]
impl From<VisPublic> for Visibilityfn from(e: VisPublic) -> Visibility[src]
fn from(e: VisPublic) -> VisibilityPerforms the conversion.
impl From<VisCrate> for Visibility[src]
impl From<VisCrate> for Visibilityfn from(e: VisCrate) -> Visibility[src]
fn from(e: VisCrate) -> VisibilityPerforms the conversion.
impl From<VisRestricted> for Visibility[src]
impl From<VisRestricted> for Visibilityfn from(e: VisRestricted) -> Visibility[src]
fn from(e: VisRestricted) -> VisibilityPerforms the conversion.
impl ToTokens for Visibility[src]
impl ToTokens for Visibilityfn to_tokens(&self, tokens: &mut TokenStream)[src]
fn to_tokens(&self, tokens: &mut TokenStream)Write self to the given TokenStream. Read more
fn into_token_stream(self) -> TokenStream[src]
fn into_token_stream(self) -> TokenStreamConvert self directly into a TokenStream object. Read more
Auto Trait Implementations
impl !Send for Visibility
impl !Send for Visibilityimpl !Sync for Visibility
impl !Sync for Visibility