pub struct RemoteThreadOptions {
pub flags: ThreadCreationFlags,
pub stack_size: usize,
pub create_suspended: bool,
}Expand description
options for remote thread creation
Fields§
§flags: ThreadCreationFlags§stack_size: usize§create_suspended: boolImplementations§
Source§impl RemoteThreadOptions
impl RemoteThreadOptions
pub fn suspended() -> Self
pub fn with_stack_size(self, size: usize) -> Self
Trait Implementations§
Source§impl Clone for RemoteThreadOptions
impl Clone for RemoteThreadOptions
Source§fn clone(&self) -> RemoteThreadOptions
fn clone(&self) -> RemoteThreadOptions
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 RemoteThreadOptions
impl Debug for RemoteThreadOptions
Source§impl Default for RemoteThreadOptions
impl Default for RemoteThreadOptions
impl Copy for RemoteThreadOptions
Auto Trait Implementations§
impl Freeze for RemoteThreadOptions
impl RefUnwindSafe for RemoteThreadOptions
impl Send for RemoteThreadOptions
impl Sync for RemoteThreadOptions
impl Unpin for RemoteThreadOptions
impl UnwindSafe for RemoteThreadOptions
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