Struct syn::ExprRepeat
source · pub struct ExprRepeat {
pub attrs: Vec<Attribute>,
pub bracket_token: Bracket,
pub expr: Box<Expr>,
pub semi_token: Semi,
pub len: Box<Expr>,
}Expand description
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: Bracket§expr: Box<Expr>§semi_token: Semi§len: Box<Expr>Trait Implementations§
source§impl Clone for ExprRepeat
impl Clone for ExprRepeat
source§impl Debug for ExprRepeat
impl Debug for ExprRepeat
source§impl From<ExprRepeat> for Expr
impl From<ExprRepeat> for Expr
source§fn from(e: ExprRepeat) -> Expr
fn from(e: ExprRepeat) -> Expr
Converts to this type from the input type.