pub struct DisassembleWasmModule {
pub method: DisassembleWasmModuleMethod,
pub params: DisassembleWasmModuleParams,
}Fields§
§method: DisassembleWasmModuleMethod§params: DisassembleWasmModuleParamsImplementations§
Source§impl DisassembleWasmModule
impl DisassembleWasmModule
pub fn builder() -> DisassembleWasmModuleBuilder
Source§impl DisassembleWasmModule
impl DisassembleWasmModule
pub const IDENTIFIER: &'static str = "Debugger.disassembleWasmModule"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for DisassembleWasmModule
impl Clone for DisassembleWasmModule
Source§fn clone(&self) -> DisassembleWasmModule
fn clone(&self) -> DisassembleWasmModule
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 DisassembleWasmModule
impl CommandResult for DisassembleWasmModule
type Result = DisassembleWasmModuleResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for DisassembleWasmModule
impl Debug for DisassembleWasmModule
Source§impl<'de> Deserialize<'de> for DisassembleWasmModule
impl<'de> Deserialize<'de> for DisassembleWasmModule
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<DisassembleWasmModule> for Command
impl From<DisassembleWasmModule> for Command
Source§fn from(v: DisassembleWasmModule) -> Self
fn from(v: DisassembleWasmModule) -> Self
Converts to this type from the input type.
Source§impl From<DisassembleWasmModule> for DebuggerCommands
impl From<DisassembleWasmModule> for DebuggerCommands
Source§fn from(v: DisassembleWasmModule) -> Self
fn from(v: DisassembleWasmModule) -> Self
Converts to this type from the input type.
Source§impl From<DisassembleWasmModule> for JsProtocolCommands
impl From<DisassembleWasmModule> for JsProtocolCommands
Source§fn from(v: DisassembleWasmModule) -> Self
fn from(v: DisassembleWasmModule) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DisassembleWasmModule
impl PartialEq for DisassembleWasmModule
Source§impl Serialize for DisassembleWasmModule
impl Serialize for DisassembleWasmModule
Source§impl TryFrom<Command> for DisassembleWasmModule
impl TryFrom<Command> for DisassembleWasmModule
Source§impl TryFrom<DebuggerCommands> for DisassembleWasmModule
impl TryFrom<DebuggerCommands> for DisassembleWasmModule
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, <DisassembleWasmModule as TryFrom<DebuggerCommands>>::Error>
fn try_from( e: DebuggerCommands, ) -> Result<Self, <DisassembleWasmModule as TryFrom<DebuggerCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolCommands> for DisassembleWasmModule
impl TryFrom<JsProtocolCommands> for DisassembleWasmModule
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, <DisassembleWasmModule as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <DisassembleWasmModule as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for DisassembleWasmModule
Auto Trait Implementations§
impl Freeze for DisassembleWasmModule
impl RefUnwindSafe for DisassembleWasmModule
impl Send for DisassembleWasmModule
impl Sync for DisassembleWasmModule
impl Unpin for DisassembleWasmModule
impl UnsafeUnpin for DisassembleWasmModule
impl UnwindSafe for DisassembleWasmModule
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