pub enum ElementBody {
Normal {
brace_token: Brace,
children: Nodes<ElementNode>,
},
Void {
semi_token: Semi,
},
}Variants§
Trait Implementations§
Source§impl Parse for ElementBody
impl Parse for ElementBody
fn parse(input: ParseStream<'_>) -> Result<Self>
Source§impl SyntaxStatic for ElementBody
impl SyntaxStatic for ElementBody
Auto Trait Implementations§
impl !Send for ElementBody
impl !Sync for ElementBody
impl Freeze for ElementBody
impl RefUnwindSafe for ElementBody
impl Unpin for ElementBody
impl UnsafeUnpin for ElementBody
impl UnwindSafe for ElementBody
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