#[repr(C)]pub struct ove_thread_desc {
pub name: *const c_char,
pub entry: Option<unsafe extern "C" fn(*mut c_void)>,
pub arg: *mut c_void,
pub priority: u32,
pub stack_size: usize,
pub stack: *mut c_void,
}Fields§
§name: *const c_char§entry: Option<unsafe extern "C" fn(*mut c_void)>§arg: *mut c_void§priority: u32§stack_size: usize§stack: *mut c_voidAuto Trait Implementations§
impl Freeze for ove_thread_desc
impl RefUnwindSafe for ove_thread_desc
impl !Send for ove_thread_desc
impl !Sync for ove_thread_desc
impl Unpin for ove_thread_desc
impl UnwindSafe for ove_thread_desc
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