pub enum LiveNodeFindResult {
NotFound,
Component(LivePtr),
Struct(StructPtr),
Function(FnPtr),
PossibleStatic(StructPtr, FnPtr),
LiveValue(ValuePtr, TyLit),
Error(LiveError),
}
Variants§
NotFound
Component(LivePtr)
Struct(StructPtr)
Function(FnPtr)
PossibleStatic(StructPtr, FnPtr)
LiveValue(ValuePtr, TyLit)
Error(LiveError)
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for LiveNodeFindResult
impl Send for LiveNodeFindResult
impl Sync for LiveNodeFindResult
impl Unpin for LiveNodeFindResult
impl UnwindSafe for LiveNodeFindResult
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