#[repr(C)]pub struct ctor_set {
pub legacy_init: Option<unsafe extern "C-unwind" fn()>,
pub init_array: *mut Option<unsafe extern "C-unwind" fn()>,
pub init_array_len: usize,
}
Fields§
§legacy_init: Option<unsafe extern "C-unwind" fn()>
Fn ptr to _init
init_array: *mut Option<unsafe extern "C-unwind" fn()>
Pointer to the init array
init_array_len: usize
Length of init array
Trait Implementations§
impl Copy for ctor_set
impl Send for CtorSet
impl Sync for CtorSet
Auto Trait Implementations§
impl Freeze for ctor_set
impl RefUnwindSafe for ctor_set
impl Unpin for ctor_set
impl UnwindSafe for ctor_set
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