pub struct UndoParams {}Expand description
Undoes the last performed action. undo
Implementations§
Source§impl UndoParams
impl UndoParams
pub const IDENTIFIER: &'static str = "DOM.undo"
Trait Implementations§
Source§impl Clone for UndoParams
impl Clone for UndoParams
Source§fn clone(&self) -> UndoParams
fn clone(&self) -> UndoParams
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 Command for UndoParams
impl Command for UndoParams
Source§impl Debug for UndoParams
impl Debug for UndoParams
Source§impl Default for UndoParams
impl Default for UndoParams
Source§fn default() -> UndoParams
fn default() -> UndoParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UndoParams
impl<'de> Deserialize<'de> for UndoParams
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 Method for UndoParams
impl Method for UndoParams
Source§fn identifier(&self) -> MethodId
fn identifier(&self) -> MethodId
The whole string identifier for this method like:
DOM.removeNodeSource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMSource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodeSource§impl MethodType for UndoParams
impl MethodType for UndoParams
Source§impl PartialEq for UndoParams
impl PartialEq for UndoParams
Source§impl Serialize for UndoParams
impl Serialize for UndoParams
impl StructuralPartialEq for UndoParams
Auto Trait Implementations§
impl Freeze for UndoParams
impl RefUnwindSafe for UndoParams
impl Send for UndoParams
impl Sync for UndoParams
impl Unpin for UndoParams
impl UnwindSafe for UndoParams
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