pub struct ParseNodeResult<'ast, T> {
pub node: T,
pub metadata: ParseMetadata<'ast>,
}Fields§
§node: T§metadata: ParseMetadata<'ast>Trait Implementations§
Source§impl<'ast, T: Debug> Debug for ParseNodeResult<'ast, T>
impl<'ast, T: Debug> Debug for ParseNodeResult<'ast, T>
Source§impl<'ast, T: PartialEq> PartialEq for ParseNodeResult<'ast, T>
impl<'ast, T: PartialEq> PartialEq for ParseNodeResult<'ast, T>
impl<'ast, T: PartialEq> StructuralPartialEq for ParseNodeResult<'ast, T>
Auto Trait Implementations§
impl<'ast, T> Freeze for ParseNodeResult<'ast, T>where
T: Freeze,
impl<'ast, T> RefUnwindSafe for ParseNodeResult<'ast, T>where
T: RefUnwindSafe,
impl<'ast, T> Send for ParseNodeResult<'ast, T>where
T: Send,
impl<'ast, T> Sync for ParseNodeResult<'ast, T>where
T: Sync,
impl<'ast, T> Unpin for ParseNodeResult<'ast, T>where
T: Unpin,
impl<'ast, T> UnsafeUnpin for ParseNodeResult<'ast, T>where
T: UnsafeUnpin,
impl<'ast, T> UnwindSafe for ParseNodeResult<'ast, T>where
T: 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