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
Source§fn clone(&self) -> LoadErrorKind
fn clone(&self) -> LoadErrorKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl 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