pub struct LoadComplete {
pub method: LoadCompleteMethod,
pub params: LoadCompleteParams,
}Expand description
The loadComplete event mirrors the load complete event sent by the browser to assistive technology when the web page has finished loading. loadComplete
Fields§
§method: LoadCompleteMethod§params: LoadCompleteParamsImplementations§
Source§impl LoadComplete
impl LoadComplete
pub const IDENTIFIER: &'static str = "Accessibility.loadComplete"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for LoadComplete
impl Clone for LoadComplete
Source§fn clone(&self) -> LoadComplete
fn clone(&self) -> LoadComplete
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 moreSource§impl Debug for LoadComplete
impl Debug for LoadComplete
Source§impl<'de> Deserialize<'de> for LoadComplete
impl<'de> Deserialize<'de> for LoadComplete
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<LoadComplete> for AccessibilityEvents
impl From<LoadComplete> for AccessibilityEvents
Source§fn from(v: LoadComplete) -> Self
fn from(v: LoadComplete) -> Self
Converts to this type from the input type.
Source§impl From<LoadComplete> for BrowserProtocolEvents
impl From<LoadComplete> for BrowserProtocolEvents
Source§fn from(v: LoadComplete) -> Self
fn from(v: LoadComplete) -> Self
Converts to this type from the input type.
Source§impl From<LoadComplete> for Event
impl From<LoadComplete> for Event
Source§fn from(v: LoadComplete) -> Self
fn from(v: LoadComplete) -> Self
Converts to this type from the input type.
Source§impl PartialEq for LoadComplete
impl PartialEq for LoadComplete
Source§impl Serialize for LoadComplete
impl Serialize for LoadComplete
Source§impl TryFrom<AccessibilityEvents> for LoadComplete
impl TryFrom<AccessibilityEvents> for LoadComplete
Source§type Error = AccessibilityEvents
type Error = AccessibilityEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: AccessibilityEvents,
) -> Result<Self, <LoadComplete as TryFrom<AccessibilityEvents>>::Error>
fn try_from( e: AccessibilityEvents, ) -> Result<Self, <LoadComplete as TryFrom<AccessibilityEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolEvents> for LoadComplete
impl TryFrom<BrowserProtocolEvents> for LoadComplete
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <LoadComplete as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <LoadComplete as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for LoadComplete
impl TryFrom<Event> for LoadComplete
impl StructuralPartialEq for LoadComplete
Auto Trait Implementations§
impl Freeze for LoadComplete
impl RefUnwindSafe for LoadComplete
impl Send for LoadComplete
impl Sync for LoadComplete
impl Unpin for LoadComplete
impl UnsafeUnpin for LoadComplete
impl UnwindSafe for LoadComplete
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