pub struct LoadErrorPage<'a> {
pub title: &'a str,
pub message: &'a str,
pub retry_label: &'a str,
pub retry_url: &'a str,
}Expand description
Localized content for the built-in WebView load-error document.
Fields§
§title: &'a str§message: &'a str§retry_label: &'a str§retry_url: &'a strTrait Implementations§
Source§impl<'a> Clone for LoadErrorPage<'a>
impl<'a> Clone for LoadErrorPage<'a>
Source§fn clone(&self) -> LoadErrorPage<'a>
fn clone(&self) -> LoadErrorPage<'a>
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<'a> Copy for LoadErrorPage<'a>
Auto Trait Implementations§
impl<'a> Freeze for LoadErrorPage<'a>
impl<'a> RefUnwindSafe for LoadErrorPage<'a>
impl<'a> Send for LoadErrorPage<'a>
impl<'a> Sync for LoadErrorPage<'a>
impl<'a> Unpin for LoadErrorPage<'a>
impl<'a> UnsafeUnpin for LoadErrorPage<'a>
impl<'a> UnwindSafe for LoadErrorPage<'a>
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