#[repr(C)]pub struct Tcb<T> {
pub self_ptr: *const Tcb<T>,
pub dtv: *const usize,
pub dtv_len: usize,
pub runtime_data: T,
}
Fields§
§self_ptr: *const Tcb<T>
§dtv: *const usize
§dtv_len: usize
§runtime_data: T
Implementations§
Auto Trait Implementations§
impl<T> !Crossing for Tcb<T>
impl<T> !ObjSafe for Tcb<T>
impl<T> RefUnwindSafe for Tcb<T>where T: RefUnwindSafe,
impl<T> !Send for Tcb<T>
impl<T> !Sync for Tcb<T>
impl<T> Unpin for Tcb<T>where T: Unpin,
impl<T> UnwindSafe for Tcb<T>where T: UnwindSafe + RefUnwindSafe,
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