Struct syn::UseGroup [−][src]
pub struct UseGroup {
pub brace_token: Brace,
pub items: Punctuated<UseTree, Comma>,
}
Expand description
A braced group of imports in a use
item: {A, B, C}
.
This type is available only if Syn is built with the "full"
feature.
Fields
brace_token: Brace
items: Punctuated<UseTree, Comma>
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for UseGroup
impl UnwindSafe for UseGroup
Blanket Implementations
Mutably borrows from an owned value. Read more