pub trait NavigationExt {
// Required methods
fn back(&self) -> impl Future<Output = Result<(), BrowserError>> + Send;
fn forward(&self) -> impl Future<Output = Result<(), BrowserError>> + Send;
fn reload(&self) -> impl Future<Output = Result<(), BrowserError>> + Send;
}Expand description
Navigation operations for browser client
Required Methods§
Sourcefn back(&self) -> impl Future<Output = Result<(), BrowserError>> + Send
fn back(&self) -> impl Future<Output = Result<(), BrowserError>> + Send
Navigate back in browser history
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.