pub struct StepResponse {
pub kind: String,
pub seq: u64,
pub result: Option<Value>,
}Expand description
Wire-safe decision for a local codemode.step callback.
Fields§
§kind: StringReplay, execute, or pause.
seq: u64Host-assigned sequence.
result: Option<Value>Previously recorded step result.
Trait Implementations§
Source§impl Clone for StepResponse
impl Clone for StepResponse
Source§impl Debug for StepResponse
impl Debug for StepResponse
Source§impl<'de> Deserialize<'de> for StepResponse
impl<'de> Deserialize<'de> for StepResponse
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 StepResponse
impl RefUnwindSafe for StepResponse
impl Send for StepResponse
impl Sync for StepResponse
impl Unpin for StepResponse
impl UnsafeUnpin for StepResponse
impl UnwindSafe for StepResponse
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