pub struct DocumentUpdated {
pub method: DocumentUpdatedMethod,
pub params: DocumentUpdatedParams,
}Expand description
Fired when Document has been totally updated. Node ids are no longer valid.
documentUpdated
Fields§
§method: DocumentUpdatedMethod§params: DocumentUpdatedParamsImplementations§
Source§impl DocumentUpdated
impl DocumentUpdated
pub const IDENTIFIER: &'static str = "DOM.documentUpdated"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for DocumentUpdated
impl Clone for DocumentUpdated
Source§fn clone(&self) -> DocumentUpdated
fn clone(&self) -> DocumentUpdated
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 DocumentUpdated
impl Debug for DocumentUpdated
Source§impl<'de> Deserialize<'de> for DocumentUpdated
impl<'de> Deserialize<'de> for DocumentUpdated
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<DocumentUpdated> for BrowserProtocolEvents
impl From<DocumentUpdated> for BrowserProtocolEvents
Source§fn from(v: DocumentUpdated) -> Self
fn from(v: DocumentUpdated) -> Self
Converts to this type from the input type.
Source§impl From<DocumentUpdated> for DomEvents
impl From<DocumentUpdated> for DomEvents
Source§fn from(v: DocumentUpdated) -> Self
fn from(v: DocumentUpdated) -> Self
Converts to this type from the input type.
Source§impl From<DocumentUpdated> for Event
impl From<DocumentUpdated> for Event
Source§fn from(v: DocumentUpdated) -> Self
fn from(v: DocumentUpdated) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DocumentUpdated
impl PartialEq for DocumentUpdated
Source§impl Serialize for DocumentUpdated
impl Serialize for DocumentUpdated
Source§impl TryFrom<BrowserProtocolEvents> for DocumentUpdated
impl TryFrom<BrowserProtocolEvents> for DocumentUpdated
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, <DocumentUpdated as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <DocumentUpdated as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<DomEvents> for DocumentUpdated
impl TryFrom<DomEvents> for DocumentUpdated
Source§impl TryFrom<Event> for DocumentUpdated
impl TryFrom<Event> for DocumentUpdated
impl StructuralPartialEq for DocumentUpdated
Auto Trait Implementations§
impl Freeze for DocumentUpdated
impl RefUnwindSafe for DocumentUpdated
impl Send for DocumentUpdated
impl Sync for DocumentUpdated
impl Unpin for DocumentUpdated
impl UnsafeUnpin for DocumentUpdated
impl UnwindSafe for DocumentUpdated
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