pub struct Redo {
pub method: RedoMethod,
pub params: RedoParams,
}Expand description
Re-does the last undone action. redo
Fields§
§method: RedoMethod§params: RedoParamsImplementations§
Source§impl Redo
impl Redo
pub const IDENTIFIER: &'static str = "DOM.redo"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl CommandResult for Redo
impl CommandResult for Redo
type Result = RedoResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl<'de> Deserialize<'de> for Redo
impl<'de> Deserialize<'de> for Redo
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<Redo> for BrowserProtocolCommands
impl From<Redo> for BrowserProtocolCommands
Source§impl From<Redo> for DomCommands
impl From<Redo> for DomCommands
Source§impl TryFrom<BrowserProtocolCommands> for Redo
impl TryFrom<BrowserProtocolCommands> for Redo
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <Redo as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <Redo as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<DomCommands> for Redo
impl TryFrom<DomCommands> for Redo
Source§type Error = DomCommands
type Error = DomCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: DomCommands,
) -> Result<Self, <Redo as TryFrom<DomCommands>>::Error>
fn try_from( e: DomCommands, ) -> Result<Self, <Redo as TryFrom<DomCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for Redo
Auto Trait Implementations§
impl Freeze for Redo
impl RefUnwindSafe for Redo
impl Send for Redo
impl Sync for Redo
impl Unpin for Redo
impl UnsafeUnpin for Redo
impl UnwindSafe for Redo
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