pub enum NavSignal {
Started,
Completed {
success: bool,
},
}Expand description
A navigation signal the host pumps in from its producer’s nav-event stream
(scrying’s NavigationEvent::Completed { success } maps to
NavSignal::Completed { success }).
Variants§
Started
A navigation started. Informational; the receiver waits for completion.
Completed
The navigation finished. success is the top-level load result.
Trait Implementations§
Auto Trait Implementations§
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