pub struct CallFunctionOn {
pub method: CallFunctionOnMethod,
pub params: CallFunctionOnParams,
}Expand description
Calls function with given declaration on the given object. Object group of the result is inherited from the target object. callFunctionOn
Fields§
§method: CallFunctionOnMethod§params: CallFunctionOnParamsImplementations§
Source§impl CallFunctionOn
impl CallFunctionOn
pub fn builder() -> CallFunctionOnBuilder
Source§impl CallFunctionOn
impl CallFunctionOn
pub const IDENTIFIER: &'static str = "Runtime.callFunctionOn"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for CallFunctionOn
impl Clone for CallFunctionOn
Source§fn clone(&self) -> CallFunctionOn
fn clone(&self) -> CallFunctionOn
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 CallFunctionOn
impl CommandResult for CallFunctionOn
type Result = CallFunctionOnResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for CallFunctionOn
impl Debug for CallFunctionOn
Source§impl<'de> Deserialize<'de> for CallFunctionOn
impl<'de> Deserialize<'de> for CallFunctionOn
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<CallFunctionOn> for Command
impl From<CallFunctionOn> for Command
Source§fn from(v: CallFunctionOn) -> Self
fn from(v: CallFunctionOn) -> Self
Converts to this type from the input type.
Source§impl From<CallFunctionOn> for JsProtocolCommands
impl From<CallFunctionOn> for JsProtocolCommands
Source§fn from(v: CallFunctionOn) -> Self
fn from(v: CallFunctionOn) -> Self
Converts to this type from the input type.
Source§impl From<CallFunctionOn> for RuntimeCommands
impl From<CallFunctionOn> for RuntimeCommands
Source§fn from(v: CallFunctionOn) -> Self
fn from(v: CallFunctionOn) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CallFunctionOn
impl PartialEq for CallFunctionOn
Source§impl Serialize for CallFunctionOn
impl Serialize for CallFunctionOn
Source§impl TryFrom<Command> for CallFunctionOn
impl TryFrom<Command> for CallFunctionOn
Source§impl TryFrom<JsProtocolCommands> for CallFunctionOn
impl TryFrom<JsProtocolCommands> for CallFunctionOn
Source§type Error = JsProtocolCommands
type Error = JsProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: JsProtocolCommands,
) -> Result<Self, <CallFunctionOn as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <CallFunctionOn as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<RuntimeCommands> for CallFunctionOn
impl TryFrom<RuntimeCommands> for CallFunctionOn
Source§type Error = RuntimeCommands
type Error = RuntimeCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: RuntimeCommands,
) -> Result<Self, <CallFunctionOn as TryFrom<RuntimeCommands>>::Error>
fn try_from( e: RuntimeCommands, ) -> Result<Self, <CallFunctionOn as TryFrom<RuntimeCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for CallFunctionOn
Auto Trait Implementations§
impl Freeze for CallFunctionOn
impl RefUnwindSafe for CallFunctionOn
impl Send for CallFunctionOn
impl Sync for CallFunctionOn
impl Unpin for CallFunctionOn
impl UnsafeUnpin for CallFunctionOn
impl UnwindSafe for CallFunctionOn
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