Enum nvbit_model::MemorySpace
source · pub enum MemorySpace {
None,
Local,
Generic,
Global,
Shared,
Constant,
GlobalToShared,
Surface,
Texture,
}Expand description
Identifier of GPU memory space.
Variants§
Trait Implementations§
source§impl Clone for MemorySpace
impl Clone for MemorySpace
source§fn clone(&self) -> MemorySpace
fn clone(&self) -> MemorySpace
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 MemorySpace
impl Debug for MemorySpace
source§impl<'de> Deserialize<'de> for MemorySpace
impl<'de> Deserialize<'de> for MemorySpace
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
source§impl Hash for MemorySpace
impl Hash for MemorySpace
source§impl Ord for MemorySpace
impl Ord for MemorySpace
source§fn cmp(&self, other: &MemorySpace) -> Ordering
fn cmp(&self, other: &MemorySpace) -> 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<MemorySpace> for MemorySpace
impl PartialEq<MemorySpace> for MemorySpace
source§fn eq(&self, other: &MemorySpace) -> bool
fn eq(&self, other: &MemorySpace) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<MemorySpace> for MemorySpace
impl PartialOrd<MemorySpace> for MemorySpace
source§fn partial_cmp(&self, other: &MemorySpace) -> Option<Ordering>
fn partial_cmp(&self, other: &MemorySpace) -> 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 moresource§impl Serialize for MemorySpace
impl Serialize for MemorySpace
impl Copy for MemorySpace
impl Eq for MemorySpace
impl StructuralEq for MemorySpace
impl StructuralPartialEq for MemorySpace
Auto Trait Implementations§
impl RefUnwindSafe for MemorySpace
impl Send for MemorySpace
impl Sync for MemorySpace
impl Unpin for MemorySpace
impl UnwindSafe for MemorySpace
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