Struct syn::ConstParam
source · 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>,
}
Expand description
A const generic parameter: const LENGTH: usize
.
Fields§
§attrs: Vec<Attribute>
§const_token: Const
§ident: Ident
§colon_token: Colon
§ty: Type
§eq_token: Option<Eq>
§default: Option<Expr>
Trait Implementations§
source§impl Clone for ConstParam
impl Clone for ConstParam
source§impl Debug for ConstParam
impl Debug for ConstParam
source§impl From<ConstParam> for GenericParam
impl From<ConstParam> for GenericParam
source§fn from(e: ConstParam) -> GenericParam
fn from(e: ConstParam) -> GenericParam
Converts to this type from the input type.
source§impl Hash for ConstParam
impl Hash for ConstParam
source§impl Parse for ConstParam
impl Parse for ConstParam
fn parse(input: ParseStream<'_>) -> Result<Self>
source§impl PartialEq for ConstParam
impl PartialEq for ConstParam
source§impl ToTokens for ConstParam
impl ToTokens for ConstParam
source§fn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
impl Eq for ConstParam
Auto Trait Implementations§
impl Freeze for ConstParam
impl RefUnwindSafe for ConstParam
impl !Send for ConstParam
impl !Sync for ConstParam
impl Unpin for ConstParam
impl UnwindSafe for ConstParam
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Spanned for Twhere
T: Spanned + ?Sized,
impl<T> Spanned for Twhere
T: Spanned + ?Sized,
source§fn span(&self) -> Span
fn span(&self) -> Span
Returns a
Span
covering the complete contents of this syntax tree
node, or Span::call_site()
if this node is empty.