pub enum LoadErrorKind {
Dns,
Network,
Timeout,
Security,
InvalidUrl,
NotFound,
Unknown,
}Expand description
Normalized category for a main-frame page load failure.
Cancellation is deliberately not a kind: a cancelled navigation is control
flow and terminates as NavigationEvent::Cancelled, never as a load error.
Variants§
Trait Implementations§
Source§impl Clone for LoadErrorKind
impl Clone for LoadErrorKind
impl Copy for LoadErrorKind
Source§impl Debug for LoadErrorKind
impl Debug for LoadErrorKind
impl Eq for LoadErrorKind
Source§impl PartialEq for LoadErrorKind
impl PartialEq for LoadErrorKind
impl StructuralPartialEq for LoadErrorKind
Auto Trait Implementations§
impl Freeze for LoadErrorKind
impl RefUnwindSafe for LoadErrorKind
impl Send for LoadErrorKind
impl Sync for LoadErrorKind
impl Unpin for LoadErrorKind
impl UnsafeUnpin for LoadErrorKind
impl UnwindSafe for LoadErrorKind
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