pub struct Node<N: Debug> {
pub position: Position,
pub node: N,
}
Expand description
A node generated by the parser
Fields§
§position: Position
§node: N
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<N> Freeze for Node<N>where
N: Freeze,
impl<N> RefUnwindSafe for Node<N>where
N: RefUnwindSafe,
impl<N> !Send for Node<N>
impl<N> !Sync for Node<N>
impl<N> Unpin for Node<N>where
N: Unpin,
impl<N> UnwindSafe for Node<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