Struct syn::ExprIndex [−][src]
pub struct ExprIndex {
pub attrs: Vec<Attribute>,
pub expr: Box<Expr>,
pub bracket_token: Bracket,
pub index: Box<Expr>,
}This is supported on crate features
full or derive only.A square bracketed indexing expression: vector[2].
This type is available only if Syn is built with the "derive" or
"full" feature.
Fields
attrs: Vec<Attribute>expr: Box<Expr>bracket_token: Bracketindex: Box<Expr>Trait Implementations
impl Clone for ExprIndex[src]
impl Clone for ExprIndex[src]This is supported on crate feature
clone-impls only.fn clone(&self) -> Self[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Parse for ExprIndex[src]
impl Parse for ExprIndex[src]This is supported on crate feature
parsing only.fn parse(input: ParseStream<'_>) -> Result<Self>[src]
impl ToTokens for ExprIndex[src]
impl ToTokens for ExprIndex[src]This is supported on crate feature
printing only.fn to_tokens(&self, tokens: &mut TokenStream)[src]
pub fn to_token_stream(&self) -> TokenStream[src]
pub fn into_token_stream(self) -> TokenStream[src]
Auto Trait Implementations
impl RefUnwindSafe for ExprIndex
impl RefUnwindSafe for ExprIndeximpl UnwindSafe for ExprIndex
impl UnwindSafe for ExprIndex