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.
Inherited
An 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 Debug for Visibility
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Eq for Visibility
[src]
impl PartialEq for Visibility
[src]
fn eq(&self, __arg_0: &Visibility) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Visibility) -> bool
[src]
This method tests for !=
.
impl Hash for Visibility
[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
[src]
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]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. 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.
impl ToTokens for Visibility
[src]
fn to_tokens(&self, tokens: &mut TokenStream)
[src]
Write self
to the given TokenStream
. Read more
fn into_token_stream(self) -> TokenStream
[src]
Convert self
directly into a TokenStream
object. Read more