Enum hip_sys::hiprt::hipUserObjectFlags
source · #[non_exhaustive]#[repr(u32)]pub enum hipUserObjectFlags {
hipUserObjectNoDestructorSync,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
hipUserObjectNoDestructorSync
< Destructor execution is not synchronized.
Trait Implementations§
source§impl Clone for hipUserObjectFlags
impl Clone for hipUserObjectFlags
source§fn clone(&self) -> hipUserObjectFlags
fn clone(&self) -> hipUserObjectFlags
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 hipUserObjectFlags
impl Debug for hipUserObjectFlags
source§impl Hash for hipUserObjectFlags
impl Hash for hipUserObjectFlags
source§impl Ord for hipUserObjectFlags
impl Ord for hipUserObjectFlags
source§fn cmp(&self, other: &hipUserObjectFlags) -> Ordering
fn cmp(&self, other: &hipUserObjectFlags) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<hipUserObjectFlags> for hipUserObjectFlags
impl PartialEq<hipUserObjectFlags> for hipUserObjectFlags
source§fn eq(&self, other: &hipUserObjectFlags) -> bool
fn eq(&self, other: &hipUserObjectFlags) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<hipUserObjectFlags> for hipUserObjectFlags
impl PartialOrd<hipUserObjectFlags> for hipUserObjectFlags
source§fn partial_cmp(&self, other: &hipUserObjectFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &hipUserObjectFlags) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for hipUserObjectFlags
impl Eq for hipUserObjectFlags
impl StructuralEq for hipUserObjectFlags
impl StructuralPartialEq for hipUserObjectFlags
Auto Trait Implementations§
impl RefUnwindSafe for hipUserObjectFlags
impl Send for hipUserObjectFlags
impl Sync for hipUserObjectFlags
impl Unpin for hipUserObjectFlags
impl UnwindSafe for hipUserObjectFlags
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