Struct syn_expand_use::ExpandedUseTree [] [src]

pub struct ExpandedUseTree {
    pub items: Punctuated<ExpandedUseItem, Comma>,
}

An expanded [UseTree].

Fields

The expanded items.

Methods

impl ExpandedUseTree
[src]

[src]

Expands the given [UseTree].

Trait Implementations

impl Clone for ExpandedUseTree
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Into<UseTree>> From<T> for ExpandedUseTree
[src]

[src]

Performs the conversion.

impl ToTokens for ExpandedUseTree
[src]

[src]

Write self to the given Tokens. Read more

[src]

Convert self directly into a Tokens object. Read more

Auto Trait Implementations