pub struct SendSparseHandle(pub cusparseHandle_t);Expand description
Phase 4 cuSPARSE handle wrapper. Raw pointer is !Send by default;
cuSPARSE is thread-safe per-handle as long as a given handle is only
touched by one stream at a time (the actor-per-handle invariant).
Tuple Fields§
§0: cusparseHandle_tTrait Implementations§
impl Send for SendSparseHandle
Available on crate feature
cusparse only.impl Sync for SendSparseHandle
Available on crate feature
cusparse only.Auto Trait Implementations§
impl Freeze for SendSparseHandle
impl RefUnwindSafe for SendSparseHandle
impl Unpin for SendSparseHandle
impl UnsafeUnpin for SendSparseHandle
impl UnwindSafe for SendSparseHandle
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