pub struct NodesUpdated {
pub method: NodesUpdatedMethod,
pub params: NodesUpdatedParams,
}Expand description
The nodesUpdated event is sent every time a previously requested node has changed the in tree. nodesUpdated
Fields§
§method: NodesUpdatedMethod§params: NodesUpdatedParamsImplementations§
Source§impl NodesUpdated
impl NodesUpdated
pub const IDENTIFIER: &'static str = "Accessibility.nodesUpdated"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for NodesUpdated
impl Clone for NodesUpdated
Source§fn clone(&self) -> NodesUpdated
fn clone(&self) -> NodesUpdated
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 NodesUpdated
impl Debug for NodesUpdated
Source§impl<'de> Deserialize<'de> for NodesUpdated
impl<'de> Deserialize<'de> for NodesUpdated
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<NodesUpdated> for AccessibilityEvents
impl From<NodesUpdated> for AccessibilityEvents
Source§fn from(v: NodesUpdated) -> Self
fn from(v: NodesUpdated) -> Self
Converts to this type from the input type.
Source§impl From<NodesUpdated> for BrowserProtocolEvents
impl From<NodesUpdated> for BrowserProtocolEvents
Source§fn from(v: NodesUpdated) -> Self
fn from(v: NodesUpdated) -> Self
Converts to this type from the input type.
Source§impl From<NodesUpdated> for Event
impl From<NodesUpdated> for Event
Source§fn from(v: NodesUpdated) -> Self
fn from(v: NodesUpdated) -> Self
Converts to this type from the input type.
Source§impl PartialEq for NodesUpdated
impl PartialEq for NodesUpdated
Source§impl Serialize for NodesUpdated
impl Serialize for NodesUpdated
Source§impl TryFrom<AccessibilityEvents> for NodesUpdated
impl TryFrom<AccessibilityEvents> for NodesUpdated
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, <NodesUpdated as TryFrom<AccessibilityEvents>>::Error>
fn try_from( e: AccessibilityEvents, ) -> Result<Self, <NodesUpdated as TryFrom<AccessibilityEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolEvents> for NodesUpdated
impl TryFrom<BrowserProtocolEvents> for NodesUpdated
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, <NodesUpdated as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <NodesUpdated as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for NodesUpdated
impl TryFrom<Event> for NodesUpdated
impl StructuralPartialEq for NodesUpdated
Auto Trait Implementations§
impl Freeze for NodesUpdated
impl RefUnwindSafe for NodesUpdated
impl Send for NodesUpdated
impl Sync for NodesUpdated
impl Unpin for NodesUpdated
impl UnsafeUnpin for NodesUpdated
impl UnwindSafe for NodesUpdated
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