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: Braceitems: Punctuated<UseTree, Comma>Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for UseGroup
impl !Send for UseGroup
impl !Sync for UseGroup
impl Unpin for UseGroup
impl UnwindSafe for UseGroup
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more