#[repr(u32)]pub enum GThreadPriority {
G_THREAD_PRIORITY_LOW = 0,
G_THREAD_PRIORITY_NORMAL = 1,
G_THREAD_PRIORITY_HIGH = 2,
G_THREAD_PRIORITY_URGENT = 3,
}Variants§
G_THREAD_PRIORITY_LOW = 0
G_THREAD_PRIORITY_NORMAL = 1
G_THREAD_PRIORITY_HIGH = 2
G_THREAD_PRIORITY_URGENT = 3
Trait Implementations§
Source§impl Clone for GThreadPriority
impl Clone for GThreadPriority
Source§fn clone(&self) -> GThreadPriority
fn clone(&self) -> GThreadPriority
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 GThreadPriority
impl Debug for GThreadPriority
Source§impl Hash for GThreadPriority
impl Hash for GThreadPriority
Source§impl PartialEq for GThreadPriority
impl PartialEq for GThreadPriority
impl Copy for GThreadPriority
impl Eq for GThreadPriority
impl StructuralPartialEq for GThreadPriority
Auto Trait Implementations§
impl Freeze for GThreadPriority
impl RefUnwindSafe for GThreadPriority
impl Send for GThreadPriority
impl Sync for GThreadPriority
impl Unpin for GThreadPriority
impl UnwindSafe for GThreadPriority
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