pub struct CallFunctionOnResult {
pub result: RemoteObject,
pub exception_details: Option<ExceptionDetails>,
}Expand description
Result of Runtime.callFunctionOn.
Fields§
§result: RemoteObjectCall result.
exception_details: Option<ExceptionDetails>Exception details if the call threw.
Trait Implementations§
Source§impl Clone for CallFunctionOnResult
impl Clone for CallFunctionOnResult
Source§fn clone(&self) -> CallFunctionOnResult
fn clone(&self) -> CallFunctionOnResult
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 CallFunctionOnResult
impl Debug for CallFunctionOnResult
Source§impl<'de> Deserialize<'de> for CallFunctionOnResult
impl<'de> Deserialize<'de> for CallFunctionOnResult
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
Auto Trait Implementations§
impl Freeze for CallFunctionOnResult
impl RefUnwindSafe for CallFunctionOnResult
impl Send for CallFunctionOnResult
impl Sync for CallFunctionOnResult
impl Unpin for CallFunctionOnResult
impl UnwindSafe for CallFunctionOnResult
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