pub struct Node<S: Syntax> {
pub loc: SourceRange,
pub stx: Box<S>,
pub scope: Scope,
}
Fields§
§loc: SourceRange
§stx: Box<S>
§scope: Scope
Auto Trait Implementations§
impl<S> Freeze for Node<S>
impl<S> !RefUnwindSafe for Node<S>
impl<S> !Send for Node<S>
impl<S> !Sync for Node<S>
impl<S> Unpin for Node<S>
impl<S> !UnwindSafe for Node<S>
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