//! Parsing utilities for aspect macro attributes.
usesyn::{Expr,Result};/// Information about the aspect to apply.
pubstructAspectInfo{/// The expression that evaluates to the aspect instance
pubaspect_expr: Expr,
}implAspectInfo{/// Parse aspect information from the attribute syntax.
pubfnparse(aspect_expr: Expr)->Result<Self>{Ok(Self{ aspect_expr })}}