pub struct NextWasmDisassemblyChunkParams {
pub stream_id: String,
}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§
§stream_id: StringImplementations§
Trait Implementations§
Source§impl Clone for NextWasmDisassemblyChunkParams
impl Clone for NextWasmDisassemblyChunkParams
Source§fn clone(&self) -> NextWasmDisassemblyChunkParams
fn clone(&self) -> NextWasmDisassemblyChunkParams
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<'de> Deserialize<'de> for NextWasmDisassemblyChunkParams
impl<'de> Deserialize<'de> for NextWasmDisassemblyChunkParams
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 PartialEq for NextWasmDisassemblyChunkParams
impl PartialEq for NextWasmDisassemblyChunkParams
Source§fn eq(&self, other: &NextWasmDisassemblyChunkParams) -> bool
fn eq(&self, other: &NextWasmDisassemblyChunkParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NextWasmDisassemblyChunkParams
Auto Trait Implementations§
impl Freeze for NextWasmDisassemblyChunkParams
impl RefUnwindSafe for NextWasmDisassemblyChunkParams
impl Send for NextWasmDisassemblyChunkParams
impl Sync for NextWasmDisassemblyChunkParams
impl Unpin for NextWasmDisassemblyChunkParams
impl UnsafeUnpin for NextWasmDisassemblyChunkParams
impl UnwindSafe for NextWasmDisassemblyChunkParams
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