pub struct Group<N: Node> {
pub brace_token: Brace,
pub nodes: Nodes<N>,
}Fields§
§brace_token: Brace§nodes: Nodes<N>Trait Implementations§
Source§impl Parse for Group<ElementNode>
impl Parse for Group<ElementNode>
fn parse(input: ParseStream<'_>) -> Result<Self>
Source§impl Parse for Group<AttributeValueNode>
impl Parse for Group<AttributeValueNode>
fn parse(input: ParseStream<'_>) -> Result<Self>
Source§impl<N: Node + SyntaxStatic> SyntaxStatic for Group<N>
impl<N: Node + SyntaxStatic> SyntaxStatic for Group<N>
Auto Trait Implementations§
impl<N> !Send for Group<N>
impl<N> !Sync for Group<N>
impl<N> Freeze for Group<N>
impl<N> RefUnwindSafe for Group<N>where
N: RefUnwindSafe,
impl<N> Unpin for Group<N>where
N: Unpin,
impl<N> UnsafeUnpin for Group<N>
impl<N> UnwindSafe for Group<N>where
N: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more