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 Parse for ConstParam[src]
impl Parse for ConstParamfn parse(input: ParseStream) -> Result<Self>[src]
fn parse(input: ParseStream) -> Result<Self>impl ToTokens for ConstParam[src]
impl ToTokens for ConstParamfn 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
impl Clone for ConstParam[src]
impl Clone for ConstParamfn clone(&self) -> ConstParam[src]
fn clone(&self) -> ConstParamReturns 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 GenericParamfn from(e: ConstParam) -> GenericParam[src]
fn from(e: ConstParam) -> GenericParamPerforms the conversion.
Auto Trait Implementations
impl !Send for ConstParam
impl !Send for ConstParamimpl !Sync for ConstParam
impl !Sync for ConstParam