Struct swipl_fli::PL_thread_attr_t
source · #[repr(C)]pub struct PL_thread_attr_t {
pub stack_limit: usize,
pub table_space: usize,
pub alias: *mut c_char,
pub cancel: Option<unsafe extern "C" fn(id: c_int) -> rc_cancel>,
pub flags: isize,
pub max_queue_size: usize,
pub reserved: [*mut c_void; 3],
}
Fields§
§stack_limit: usize
§table_space: usize
§alias: *mut c_char
§cancel: Option<unsafe extern "C" fn(id: c_int) -> rc_cancel>
§flags: isize
§max_queue_size: usize
§reserved: [*mut c_void; 3]
Trait Implementations§
source§impl Clone for PL_thread_attr_t
impl Clone for PL_thread_attr_t
source§fn clone(&self) -> PL_thread_attr_t
fn clone(&self) -> PL_thread_attr_t
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PL_thread_attr_t
impl Debug for PL_thread_attr_t
impl Copy for PL_thread_attr_t
Auto Trait Implementations§
impl RefUnwindSafe for PL_thread_attr_t
impl !Send for PL_thread_attr_t
impl !Sync for PL_thread_attr_t
impl Unpin for PL_thread_attr_t
impl UnwindSafe for PL_thread_attr_t
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