pub enum MemorySpace {
None = 0,
Local = 1,
Generic = 2,
Global = 3,
Shared = 4,
Constant = 5,
GlobalToShared = 6,
Surface = 7,
Texture = 8,
}
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 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 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 for MemorySpace
impl PartialEq for MemorySpace
Source§impl PartialOrd for MemorySpace
impl PartialOrd for MemorySpace
Source§impl Serialize for MemorySpace
impl Serialize for MemorySpace
impl Copy for MemorySpace
impl Eq for MemorySpace
impl StructuralPartialEq for MemorySpace
Auto Trait Implementations§
impl Freeze for MemorySpace
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