pub struct NextWasmDisassemblyChunkParams {
pub streamId: 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.
Fields§
§streamId: 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 Default for NextWasmDisassemblyChunkParams
impl Default for NextWasmDisassemblyChunkParams
Source§fn default() -> NextWasmDisassemblyChunkParams
fn default() -> NextWasmDisassemblyChunkParams
Returns the “default value” for a type. Read more
Source§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
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