#[repr(u32)]pub enum PspThreadAttributes {
PSP_THREAD_ATTR_VFPU = 16_384,
PSP_THREAD_ATTR_USER = 2_147_483_648,
PSP_THREAD_ATTR_USBWLAN = 2_684_354_560,
PSP_THREAD_ATTR_VSH = 3_221_225_472,
PSP_THREAD_ATTR_SCRATCH_SRAM = 32_768,
PSP_THREAD_ATTR_NO_FILLSTACK = 1_048_576,
PSP_THREAD_ATTR_CLEAR_STACK = 2_097_152,
}Expand description
Attribute for threads.
Variants§
PSP_THREAD_ATTR_VFPU = 16_384
PSP_THREAD_ATTR_USER = 2_147_483_648
PSP_THREAD_ATTR_USBWLAN = 2_684_354_560
PSP_THREAD_ATTR_VSH = 3_221_225_472
PSP_THREAD_ATTR_SCRATCH_SRAM = 32_768
PSP_THREAD_ATTR_NO_FILLSTACK = 1_048_576
PSP_THREAD_ATTR_CLEAR_STACK = 2_097_152
Trait Implementations§
Source§impl Clone for PspThreadAttributes
impl Clone for PspThreadAttributes
Source§fn clone(&self) -> PspThreadAttributes
fn clone(&self) -> PspThreadAttributes
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 PspThreadAttributes
impl Debug for PspThreadAttributes
Source§impl Hash for PspThreadAttributes
impl Hash for PspThreadAttributes
Source§impl PartialEq for PspThreadAttributes
impl PartialEq for PspThreadAttributes
impl Copy for PspThreadAttributes
impl Eq for PspThreadAttributes
impl StructuralPartialEq for PspThreadAttributes
Auto Trait Implementations§
impl Freeze for PspThreadAttributes
impl RefUnwindSafe for PspThreadAttributes
impl Send for PspThreadAttributes
impl Sync for PspThreadAttributes
impl Unpin for PspThreadAttributes
impl UnsafeUnpin for PspThreadAttributes
impl UnwindSafe for PspThreadAttributes
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