pub struct VmRecordingReplayResponse {
pub output: String,
pub current_line: Option<u32>,
pub at_end: bool,
pub exited: bool,
}Fields§
§output: String§current_line: Option<u32>§at_end: bool§exited: boolTrait Implementations§
Source§impl Clone for VmRecordingReplayResponse
impl Clone for VmRecordingReplayResponse
Source§fn clone(&self) -> VmRecordingReplayResponse
fn clone(&self) -> VmRecordingReplayResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for VmRecordingReplayResponse
impl RefUnwindSafe for VmRecordingReplayResponse
impl Send for VmRecordingReplayResponse
impl Sync for VmRecordingReplayResponse
impl Unpin for VmRecordingReplayResponse
impl UnsafeUnpin for VmRecordingReplayResponse
impl UnwindSafe for VmRecordingReplayResponse
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