pub struct NextWasmDisassemblyChunk {
pub method: NextWasmDisassemblyChunkMethod,
pub params: NextWasmDisassemblyChunkParams,
}Expand description
Disassemble the next chunk of lines for the module corresponding to the stream. If disassembly is complete, this API will invalidate the streamId and return an empty chunk. Any subsequent calls for the now invalid stream will return errors. nextWasmDisassemblyChunk
Fields§
§method: NextWasmDisassemblyChunkMethod§params: NextWasmDisassemblyChunkParamsImplementations§
Source§impl NextWasmDisassemblyChunk
impl NextWasmDisassemblyChunk
pub const IDENTIFIER: &'static str = "Debugger.nextWasmDisassemblyChunk"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for NextWasmDisassemblyChunk
impl Clone for NextWasmDisassemblyChunk
Source§fn clone(&self) -> NextWasmDisassemblyChunk
fn clone(&self) -> NextWasmDisassemblyChunk
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 NextWasmDisassemblyChunk
impl CommandResult for NextWasmDisassemblyChunk
type Result = NextWasmDisassemblyChunkResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for NextWasmDisassemblyChunk
impl Debug for NextWasmDisassemblyChunk
Source§impl<'de> Deserialize<'de> for NextWasmDisassemblyChunk
impl<'de> Deserialize<'de> for NextWasmDisassemblyChunk
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<NextWasmDisassemblyChunk> for Command
impl From<NextWasmDisassemblyChunk> for Command
Source§fn from(v: NextWasmDisassemblyChunk) -> Self
fn from(v: NextWasmDisassemblyChunk) -> Self
Converts to this type from the input type.
Source§impl From<NextWasmDisassemblyChunk> for DebuggerCommands
impl From<NextWasmDisassemblyChunk> for DebuggerCommands
Source§fn from(v: NextWasmDisassemblyChunk) -> Self
fn from(v: NextWasmDisassemblyChunk) -> Self
Converts to this type from the input type.
Source§impl From<NextWasmDisassemblyChunk> for JsProtocolCommands
impl From<NextWasmDisassemblyChunk> for JsProtocolCommands
Source§fn from(v: NextWasmDisassemblyChunk) -> Self
fn from(v: NextWasmDisassemblyChunk) -> Self
Converts to this type from the input type.
Source§impl PartialEq for NextWasmDisassemblyChunk
impl PartialEq for NextWasmDisassemblyChunk
Source§impl Serialize for NextWasmDisassemblyChunk
impl Serialize for NextWasmDisassemblyChunk
Source§impl TryFrom<Command> for NextWasmDisassemblyChunk
impl TryFrom<Command> for NextWasmDisassemblyChunk
Source§impl TryFrom<DebuggerCommands> for NextWasmDisassemblyChunk
impl TryFrom<DebuggerCommands> for NextWasmDisassemblyChunk
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, <NextWasmDisassemblyChunk as TryFrom<DebuggerCommands>>::Error>
fn try_from( e: DebuggerCommands, ) -> Result<Self, <NextWasmDisassemblyChunk as TryFrom<DebuggerCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolCommands> for NextWasmDisassemblyChunk
impl TryFrom<JsProtocolCommands> for NextWasmDisassemblyChunk
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, <NextWasmDisassemblyChunk as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <NextWasmDisassemblyChunk as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for NextWasmDisassemblyChunk
Auto Trait Implementations§
impl Freeze for NextWasmDisassemblyChunk
impl RefUnwindSafe for NextWasmDisassemblyChunk
impl Send for NextWasmDisassemblyChunk
impl Sync for NextWasmDisassemblyChunk
impl Unpin for NextWasmDisassemblyChunk
impl UnsafeUnpin for NextWasmDisassemblyChunk
impl UnwindSafe for NextWasmDisassemblyChunk
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