Struct syn::ExprRepeat [−][src]
pub struct ExprRepeat {
    pub attrs: Vec<Attribute>,
    pub bracket_token: Bracket,
    pub expr: Box<Expr>,
    pub semi_token: Semi,
    pub len: Box<Expr>,
}An array literal constructed from one repeated element: [0u8; N].
This type is available only if Syn is built with the "full" feature.
Fields
attrs: Vec<Attribute>bracket_token: Bracketexpr: Box<Expr>semi_token: Semilen: Box<Expr>Trait Implementations
impl Clone for ExprRepeat[src]
impl Clone for ExprRepeat[src]fn clone(&self) -> Self[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl From<ExprRepeat> for Expr[src]
impl From<ExprRepeat> for Expr[src]fn from(e: ExprRepeat) -> Expr[src]
impl Hash for ExprRepeat[src]
impl Hash for ExprRepeat[src]impl Parse for ExprRepeat[src]
impl Parse for ExprRepeat[src]fn parse(input: ParseStream<'_>) -> Result<Self>[src]
impl PartialEq<ExprRepeat> for ExprRepeat[src]
impl PartialEq<ExprRepeat> for ExprRepeat[src]impl ToTokens for ExprRepeat[src]
impl ToTokens for ExprRepeat[src]