Struct ckb_gdb_remote_protocol::ThreadId
source · pub struct ThreadId {
pub pid: Id,
pub tid: Id,
}
Expand description
A thread identifier. In the RSP this is just a numeric handle that is passed across the wire. It needn’t correspond to any real thread or process id (though obviously it may be more convenient when it does).
Fields§
§pid: Id
The process id.
tid: Id
The thread id.
Trait Implementations§
source§impl PartialEq for ThreadId
impl PartialEq for ThreadId
impl Copy for ThreadId
impl StructuralPartialEq for ThreadId
Auto Trait Implementations§
impl RefUnwindSafe for ThreadId
impl Send for ThreadId
impl Sync for ThreadId
impl Unpin for ThreadId
impl UnwindSafe for ThreadId
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