pub enum RegisterVectorWidth {
V2,
V4,
}Expand description
Vector width attached to a PTX register declaration.
This is declaration syntax rather than an instruction modifier. Each
declared symbol owns components addressed with suffixes such as .x.
Variants§
Trait Implementations§
Source§impl Clone for RegisterVectorWidth
impl Clone for RegisterVectorWidth
Source§fn clone(&self) -> RegisterVectorWidth
fn clone(&self) -> RegisterVectorWidth
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RegisterVectorWidth
Source§impl Debug for RegisterVectorWidth
impl Debug for RegisterVectorWidth
impl Eq for RegisterVectorWidth
Source§impl PartialEq for RegisterVectorWidth
impl PartialEq for RegisterVectorWidth
Source§impl Serialize for RegisterVectorWidth
impl Serialize for RegisterVectorWidth
impl StructuralPartialEq for RegisterVectorWidth
Auto Trait Implementations§
impl Freeze for RegisterVectorWidth
impl RefUnwindSafe for RegisterVectorWidth
impl Send for RegisterVectorWidth
impl Sync for RegisterVectorWidth
impl Unpin for RegisterVectorWidth
impl UnsafeUnpin for RegisterVectorWidth
impl UnwindSafe for RegisterVectorWidth
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