pub struct DebugStartedPayload {
pub runtime_dir: Option<ClientEnd<Channel, Directory>>,
pub break_on_start: Option<Handle>,
}
Expand description
Payload for DebugStarted events.
Fields§
§runtime_dir: Option<ClientEnd<Channel, Directory>>
§break_on_start: Option<Handle>
Trait Implementations§
Source§impl Debug for DebugStartedPayload
impl Debug for DebugStartedPayload
Source§impl Encodable for DebugStartedPayload
impl Encodable for DebugStartedPayload
Source§type Encoded = WireDebugStartedPayload
type Encoded = WireDebugStartedPayload
The wire type for the value.
§const COPY_OPTIMIZATION: CopyOptimization<Self> = _
const COPY_OPTIMIZATION: CopyOptimization<Self> = _
An optimization flag that allows the bytes of this type to be copied directly during
encoding instead of calling
encode
. Read moreSource§impl<___E> Encode<___E> for DebugStartedPayloadwhere
___E: Encoder + ?Sized + HandleEncoder,
impl<___E> Encode<___E> for DebugStartedPayloadwhere
___E: Encoder + ?Sized + HandleEncoder,
Source§impl TakeFrom<WireDebugStartedPayload> for DebugStartedPayload
impl TakeFrom<WireDebugStartedPayload> for DebugStartedPayload
Source§fn take_from(from: &WireDebugStartedPayload) -> Self
fn take_from(from: &WireDebugStartedPayload) -> Self
Converts from the given
T
, taking any resources that can’t be cloned.§const COPY_OPTIMIZATION: CopyOptimization<Self> = _
const COPY_OPTIMIZATION: CopyOptimization<Self> = _
An optimization flag that allows the bytes of this type to be copied directly during
conversion instead of calling
take_from
. Read moreAuto Trait Implementations§
impl Freeze for DebugStartedPayload
impl RefUnwindSafe for DebugStartedPayload
impl Send for DebugStartedPayload
impl Sync for DebugStartedPayload
impl Unpin for DebugStartedPayload
impl UnwindSafe for DebugStartedPayload
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