#[repr(C)]pub struct TlsInfo {
pub start: u64,
pub filesz: u64,
pub memsz: u64,
pub align: u64,
}
Expand description
Thread local storage (TLS) image information.
Fields§
§start: u64
The start address of the TLS image.
filesz: u64
filesz
of the TLS program header.
memsz: u64
memsz
of the TLS program header.
align: u64
align
of the TLS program header.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TlsInfo
impl RefUnwindSafe for TlsInfo
impl Send for TlsInfo
impl Sync for TlsInfo
impl Unpin for TlsInfo
impl UnwindSafe for TlsInfo
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