pub struct CancelDragging {
pub method: CancelDraggingMethod,
pub params: CancelDraggingParams,
}Expand description
Cancels any active dragging in the page. cancelDragging
Fields§
§method: CancelDraggingMethod§params: CancelDraggingParamsImplementations§
Source§impl CancelDragging
impl CancelDragging
pub fn builder() -> CancelDraggingBuilder
Source§impl CancelDragging
impl CancelDragging
pub const IDENTIFIER: &'static str = "Input.cancelDragging"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for CancelDragging
impl Clone for CancelDragging
Source§fn clone(&self) -> CancelDragging
fn clone(&self) -> CancelDragging
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 CommandResult for CancelDragging
impl CommandResult for CancelDragging
type Result = CancelDraggingResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for CancelDragging
impl Debug for CancelDragging
Source§impl<'de> Deserialize<'de> for CancelDragging
impl<'de> Deserialize<'de> for CancelDragging
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<CancelDragging> for BrowserProtocolCommands
impl From<CancelDragging> for BrowserProtocolCommands
Source§fn from(v: CancelDragging) -> Self
fn from(v: CancelDragging) -> Self
Converts to this type from the input type.
Source§impl From<CancelDragging> for Command
impl From<CancelDragging> for Command
Source§fn from(v: CancelDragging) -> Self
fn from(v: CancelDragging) -> Self
Converts to this type from the input type.
Source§impl From<CancelDragging> for InputCommands
impl From<CancelDragging> for InputCommands
Source§fn from(v: CancelDragging) -> Self
fn from(v: CancelDragging) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CancelDragging
impl PartialEq for CancelDragging
Source§impl Serialize for CancelDragging
impl Serialize for CancelDragging
Source§impl TryFrom<BrowserProtocolCommands> for CancelDragging
impl TryFrom<BrowserProtocolCommands> for CancelDragging
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, <CancelDragging as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <CancelDragging as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for CancelDragging
impl TryFrom<Command> for CancelDragging
Source§impl TryFrom<InputCommands> for CancelDragging
impl TryFrom<InputCommands> for CancelDragging
Source§type Error = InputCommands
type Error = InputCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: InputCommands,
) -> Result<Self, <CancelDragging as TryFrom<InputCommands>>::Error>
fn try_from( e: InputCommands, ) -> Result<Self, <CancelDragging as TryFrom<InputCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for CancelDragging
Auto Trait Implementations§
impl Freeze for CancelDragging
impl RefUnwindSafe for CancelDragging
impl Send for CancelDragging
impl Sync for CancelDragging
impl Unpin for CancelDragging
impl UnsafeUnpin for CancelDragging
impl UnwindSafe for CancelDragging
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