Enum clippy::vec::VecArgs [] [src]

pub enum VecArgs<'a> {
    Repeat(&'a P<Expr>, &'a P<Expr>),
    Vec(&'a [P<Expr>]),
}

Represent the pre-expansion arguments of a vec! invocation.

Variants

Repeat

vec![elem; len]

Vec

vec![a, b, c]