Struct syn::ConstParam
[−]
[src]
pub struct ConstParam { pub attrs: Vec<Attribute>, pub const_token: Const, pub ident: Ident, pub colon_token: Colon, pub ty: Type, pub eq_token: Option<Eq>, pub default: Option<Expr>, }
A const generic parameter: const LENGTH: usize
.
This type is available if Syn is built with the "derive"
or
"full"
feature.
Fields
attrs: Vec<Attribute>
const_token: Const
ident: Ident
colon_token: Colon
ty: Type
eq_token: Option<Eq>
default: Option<Expr>
Trait Implementations
impl Synom for ConstParam
[src]
impl Synom for ConstParam
fn 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 ToTokens for ConstParam
[src]
impl ToTokens for ConstParam
fn 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) -> TokenStream
Convert self
directly into a TokenStream
object. Read more
impl Clone for ConstParam
[src]
impl Clone for ConstParam
fn clone(&self) -> ConstParam
[src]
fn clone(&self) -> ConstParam
Returns 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)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl From<ConstParam> for GenericParam
[src]
impl From<ConstParam> for GenericParam
fn from(e: ConstParam) -> GenericParam
[src]
fn from(e: ConstParam) -> GenericParam
Performs the conversion.
Auto Trait Implementations
impl !Send for ConstParam
impl !Send for ConstParam
impl !Sync for ConstParam
impl !Sync for ConstParam