Enum ThreadKind
pub enum ThreadKind {
Kanzi,
Uninit,
Parallel,
}Variants§
Kanzi
Returned on the Kanzi thread.
Uninit
Returned on the Kanzi thread after the Rust module has been uninitialized.
Parallel
Returned on all threads other than the Kanzi thread.
Trait Implementations§
§impl Clone for ThreadKind
impl Clone for ThreadKind
§fn clone(&self) -> ThreadKind
fn clone(&self) -> ThreadKind
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 more§impl Debug for ThreadKind
impl Debug for ThreadKind
§impl PartialEq for ThreadKind
impl PartialEq for ThreadKind
impl Copy for ThreadKind
impl Eq for ThreadKind
impl StructuralPartialEq for ThreadKind
Auto Trait Implementations§
impl Freeze for ThreadKind
impl RefUnwindSafe for ThreadKind
impl Send for ThreadKind
impl Sync for ThreadKind
impl Unpin for ThreadKind
impl UnwindSafe for ThreadKind
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