pub struct NavigationResult {
pub navigated: bool,
pub verified: bool,
pub actual_url: Option<String>,
pub reason: Option<String>,
}Expand description
Result of a navigation operation.
Fields§
Whether navigation was performed.
verified: boolWhether the navigation was verified as successful.
actual_url: Option<String>The actual URL after navigation.
reason: Option<String>The reason for the result.
Implementations§
Trait Implementations§
Source§fn clone(&self) -> NavigationResult
fn clone(&self) -> NavigationResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto 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