pub enum PointerAddressSpace {
Generic,
Global,
Shared,
Local,
Const,
}Expand description
Address spaces that a pointer parameter can target.
Variants§
Trait Implementations§
Source§impl Clone for PointerAddressSpace
impl Clone for PointerAddressSpace
Source§fn clone(&self) -> PointerAddressSpace
fn clone(&self) -> PointerAddressSpace
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 PointerAddressSpace
impl Debug for PointerAddressSpace
Source§impl Display for PointerAddressSpace
impl Display for PointerAddressSpace
Source§impl PartialEq for PointerAddressSpace
impl PartialEq for PointerAddressSpace
impl Copy for PointerAddressSpace
impl Eq for PointerAddressSpace
impl StructuralPartialEq for PointerAddressSpace
Auto Trait Implementations§
impl Freeze for PointerAddressSpace
impl RefUnwindSafe for PointerAddressSpace
impl Send for PointerAddressSpace
impl Sync for PointerAddressSpace
impl Unpin for PointerAddressSpace
impl UnwindSafe for PointerAddressSpace
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