pub struct Debuggee { /* private fields */ }Expand description
A debuggee consisting of one Store over which we have debugging control.
A debuggee is always either “paused” or “running”, and certain methods below are only available in one or the other state. Representation of one debuggee: a store with debugged code inside, under the control of the debugger.
Implementations§
Auto Trait Implementations§
impl Freeze for Debuggee
impl !RefUnwindSafe for Debuggee
impl Send for Debuggee
impl !Sync for Debuggee
impl Unpin for Debuggee
impl UnsafeUnpin for Debuggee
impl !UnwindSafe for Debuggee
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
Source§impl<T> GetSetFdFlags for T
impl<T> GetSetFdFlags for T
Source§fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
Query the “status” flags for the
self file descriptor.Source§fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where
T: AsFilelike,
fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where
T: AsFilelike,
Source§fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>where
T: AsFilelike,
fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>where
T: AsFilelike,
Set the “status” flags for the
self file descriptor. Read more