#[repr(C)]pub struct aws_thread_options {
pub stack_size: usize,
pub cpu_id: i32,
pub join_strategy: aws_thread_join_strategy,
pub name: aws_byte_cursor,
}
Fields
stack_size: usize
cpu_id: i32
join_strategy: aws_thread_join_strategy
name: aws_byte_cursor
Thread name, for debugging purpose. The length should not exceed AWS_THREAD_NAME_RECOMMENDED_STRLEN(15) if you want it to display properly on all platforms.
Trait Implementations
sourceimpl Clone for aws_thread_options
impl Clone for aws_thread_options
sourcefn clone(&self) -> aws_thread_options
fn clone(&self) -> aws_thread_options
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for aws_thread_options
impl Debug for aws_thread_options
sourceimpl Default for aws_thread_options
impl Default for aws_thread_options
sourceimpl PartialEq<aws_thread_options> for aws_thread_options
impl PartialEq<aws_thread_options> for aws_thread_options
sourcefn eq(&self, other: &aws_thread_options) -> bool
fn eq(&self, other: &aws_thread_options) -> bool
impl Copy for aws_thread_options
impl Eq for aws_thread_options
impl StructuralEq for aws_thread_options
impl StructuralPartialEq for aws_thread_options
Auto Trait Implementations
impl RefUnwindSafe for aws_thread_options
impl !Send for aws_thread_options
impl !Sync for aws_thread_options
impl Unpin for aws_thread_options
impl UnwindSafe for aws_thread_options
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more