pub struct EvaluateOnCallFrame {
pub method: EvaluateOnCallFrameMethod,
pub params: EvaluateOnCallFrameParams,
}Expand description
Evaluates expression on a given call frame. evaluateOnCallFrame
Fields§
§method: EvaluateOnCallFrameMethod§params: EvaluateOnCallFrameParamsImplementations§
Source§impl EvaluateOnCallFrame
impl EvaluateOnCallFrame
pub fn builder() -> EvaluateOnCallFrameBuilder
Source§impl EvaluateOnCallFrame
impl EvaluateOnCallFrame
pub const IDENTIFIER: &'static str = "Debugger.evaluateOnCallFrame"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for EvaluateOnCallFrame
impl Clone for EvaluateOnCallFrame
Source§fn clone(&self) -> EvaluateOnCallFrame
fn clone(&self) -> EvaluateOnCallFrame
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 EvaluateOnCallFrame
impl CommandResult for EvaluateOnCallFrame
type Result = EvaluateOnCallFrameResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for EvaluateOnCallFrame
impl Debug for EvaluateOnCallFrame
Source§impl<'de> Deserialize<'de> for EvaluateOnCallFrame
impl<'de> Deserialize<'de> for EvaluateOnCallFrame
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<EvaluateOnCallFrame> for Command
impl From<EvaluateOnCallFrame> for Command
Source§fn from(v: EvaluateOnCallFrame) -> Self
fn from(v: EvaluateOnCallFrame) -> Self
Converts to this type from the input type.
Source§impl From<EvaluateOnCallFrame> for DebuggerCommands
impl From<EvaluateOnCallFrame> for DebuggerCommands
Source§fn from(v: EvaluateOnCallFrame) -> Self
fn from(v: EvaluateOnCallFrame) -> Self
Converts to this type from the input type.
Source§impl From<EvaluateOnCallFrame> for JsProtocolCommands
impl From<EvaluateOnCallFrame> for JsProtocolCommands
Source§fn from(v: EvaluateOnCallFrame) -> Self
fn from(v: EvaluateOnCallFrame) -> Self
Converts to this type from the input type.
Source§impl PartialEq for EvaluateOnCallFrame
impl PartialEq for EvaluateOnCallFrame
Source§impl Serialize for EvaluateOnCallFrame
impl Serialize for EvaluateOnCallFrame
Source§impl TryFrom<Command> for EvaluateOnCallFrame
impl TryFrom<Command> for EvaluateOnCallFrame
Source§impl TryFrom<DebuggerCommands> for EvaluateOnCallFrame
impl TryFrom<DebuggerCommands> for EvaluateOnCallFrame
Source§type Error = DebuggerCommands
type Error = DebuggerCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: DebuggerCommands,
) -> Result<Self, <EvaluateOnCallFrame as TryFrom<DebuggerCommands>>::Error>
fn try_from( e: DebuggerCommands, ) -> Result<Self, <EvaluateOnCallFrame as TryFrom<DebuggerCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolCommands> for EvaluateOnCallFrame
impl TryFrom<JsProtocolCommands> for EvaluateOnCallFrame
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, <EvaluateOnCallFrame as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <EvaluateOnCallFrame as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for EvaluateOnCallFrame
Auto Trait Implementations§
impl Freeze for EvaluateOnCallFrame
impl RefUnwindSafe for EvaluateOnCallFrame
impl Send for EvaluateOnCallFrame
impl Sync for EvaluateOnCallFrame
impl Unpin for EvaluateOnCallFrame
impl UnsafeUnpin for EvaluateOnCallFrame
impl UnwindSafe for EvaluateOnCallFrame
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