pub enum DebugRequest {
Launch(LaunchRequest),
Attach(AttachRequest),
}Variants§
Launch(LaunchRequest)
Attach(AttachRequest)
Trait Implementations§
Source§impl Clone for DebugRequest
impl Clone for DebugRequest
Source§fn clone(&self) -> DebugRequest
fn clone(&self) -> DebugRequest
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 DebugRequest
impl RefUnwindSafe for DebugRequest
impl Send for DebugRequest
impl Sync for DebugRequest
impl Unpin for DebugRequest
impl UnsafeUnpin for DebugRequest
impl UnwindSafe for DebugRequest
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