Enum miri::shims::tls::TlsDtorsStatePriv
source · enum TlsDtorsStatePriv<'tcx> {
Init,
MacOsDtors,
PthreadDtors(RunningDtorState),
WindowsDtors(Vec<ImmTy<'tcx>>),
Done,
}
Variants§
Init
MacOsDtors
PthreadDtors(RunningDtorState)
WindowsDtors(Vec<ImmTy<'tcx>>)
For Windows Dtors, we store the list of functions that we still have to call.
These are functions from the magic .CRT$XLB
linker section.
Done
Trait Implementations§
source§impl<'tcx> Debug for TlsDtorsStatePriv<'tcx>
impl<'tcx> Debug for TlsDtorsStatePriv<'tcx>
source§impl<'tcx> Default for TlsDtorsStatePriv<'tcx>
impl<'tcx> Default for TlsDtorsStatePriv<'tcx>
source§fn default() -> TlsDtorsStatePriv<'tcx>
fn default() -> TlsDtorsStatePriv<'tcx>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'tcx> Freeze for TlsDtorsStatePriv<'tcx>
impl<'tcx> !RefUnwindSafe for TlsDtorsStatePriv<'tcx>
impl<'tcx> Send for TlsDtorsStatePriv<'tcx>
impl<'tcx> Sync for TlsDtorsStatePriv<'tcx>
impl<'tcx> Unpin for TlsDtorsStatePriv<'tcx>
impl<'tcx> !UnwindSafe for TlsDtorsStatePriv<'tcx>
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
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 48 bytes
Size for each variant:
Init
: 0 bytesMacOsDtors
: 0 bytesPthreadDtors
: 40 bytesWindowsDtors
: 24 bytesDone
: 0 bytes