pub struct ThreadCreationFlags {
pub flags: u32,
}Expand description
thread creation flags
Fields§
§flags: u32Implementations§
Source§impl ThreadCreationFlags
impl ThreadCreationFlags
Sourcepub const fn skip_attach() -> Self
pub const fn skip_attach() -> Self
skip thread attach notifications (dangerous)
Sourcepub const fn hide_from_debugger() -> Self
pub const fn hide_from_debugger() -> Self
hide thread from debugger
Trait Implementations§
Source§impl Clone for ThreadCreationFlags
impl Clone for ThreadCreationFlags
Source§fn clone(&self) -> ThreadCreationFlags
fn clone(&self) -> ThreadCreationFlags
Returns a duplicate 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 ThreadCreationFlags
impl Debug for ThreadCreationFlags
Source§impl Default for ThreadCreationFlags
impl Default for ThreadCreationFlags
Source§fn default() -> ThreadCreationFlags
fn default() -> ThreadCreationFlags
Returns the “default value” for a type. Read more
impl Copy for ThreadCreationFlags
Auto Trait Implementations§
impl Freeze for ThreadCreationFlags
impl RefUnwindSafe for ThreadCreationFlags
impl Send for ThreadCreationFlags
impl Sync for ThreadCreationFlags
impl Unpin for ThreadCreationFlags
impl UnwindSafe for ThreadCreationFlags
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