pub struct ThreadContextProperties {
pub cpu_affinity: Option<Vec<u16>>,
pub node_affinity: Option<Vec<u16>>,
}
Fields§
§cpu_affinity: Option<Vec<u16>>
§node_affinity: Option<Vec<u16>>
Trait Implementations§
Source§impl Clone for ThreadContextProperties
impl Clone for ThreadContextProperties
Source§fn clone(&self) -> ThreadContextProperties
fn clone(&self) -> ThreadContextProperties
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 ThreadContextProperties
impl Debug for ThreadContextProperties
Source§impl Default for ThreadContextProperties
impl Default for ThreadContextProperties
Source§fn default() -> ThreadContextProperties
fn default() -> ThreadContextProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ThreadContextProperties
impl<'de> Deserialize<'de> for ThreadContextProperties
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ThreadContextProperties
impl RefUnwindSafe for ThreadContextProperties
impl Send for ThreadContextProperties
impl Sync for ThreadContextProperties
impl Unpin for ThreadContextProperties
impl UnwindSafe for ThreadContextProperties
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