pub struct NavigateResult {
pub html: String,
pub elapsed: Duration,
pub error: Option<String>,
}Expand description
Result of a single navigation.
Fields§
§html: StringFinal body HTML, or empty on error.
elapsed: DurationWall-clock time from job dispatch through navigation completion.
error: Option<String>Some(message) if navigate returned Err. None on success.
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