pub struct PtxPredicate {
pub register: String,
pub negated: bool,
}Expand description
PTX predicate guard
Fields§
§register: StringRegister name (e.g., “p0”)
negated: boolWhether negated (@!p)
Trait Implementations§
Source§impl Clone for PtxPredicate
impl Clone for PtxPredicate
Source§fn clone(&self) -> PtxPredicate
fn clone(&self) -> PtxPredicate
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 moreAuto Trait Implementations§
impl Freeze for PtxPredicate
impl RefUnwindSafe for PtxPredicate
impl Send for PtxPredicate
impl Sync for PtxPredicate
impl Unpin for PtxPredicate
impl UnsafeUnpin for PtxPredicate
impl UnwindSafe for PtxPredicate
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