Struct aster::expr::ExprStructPathBuilder
[−]
[src]
pub struct ExprStructPathBuilder<F> { // some fields omitted }
pub struct ExprStructPathBuilder<F> { // some fields omitted }
impl<F> ExprStructPathBuilder<F> where F: Invoke<P<Expr>>
fn span(self, span: Span) -> Self
fn with_fields<I>(self, iter: I) -> Self where I: IntoIterator<Item=Field>
fn with_id_exprs<I>(self, iter: I) -> Self where I: IntoIterator<Item=(Ident, P<Expr>)>
fn field<I>(self, id: I) -> ExprBuilder<ExprStructFieldBuilder<I, F>> where I: ToIdent
fn build_with(self) -> ExprBuilder<Self>
fn build(self) -> F::Result
impl<F> Invoke<P<Expr>> for ExprStructPathBuilder<F> where F: Invoke<P<Expr>>
Prefix searches with a type followed by a colon (e.g.
fn:
) to restrict the search to a given type.
Accepted types are: fn
, mod
,
struct
, enum
,
trait
, typedef
(or
tdef
).
Search functions by type signature (e.g.
vec -> usize
)