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
.
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§
Source§impl Clone for ConstParam
impl Clone for ConstParam
Source§fn clone(&self) -> ConstParam
fn clone(&self) -> ConstParam
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§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 PartialEq for ConstParam
impl PartialEq for ConstParam
Source§impl Synom for ConstParam
impl Synom for ConstParam
Source§impl ToTokens for ConstParam
impl ToTokens for ConstParam
impl Eq for ConstParam
impl StructuralPartialEq 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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Spanned for Twhere
T: ToTokens,
impl<T> Spanned for Twhere
T: ToTokens,
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.