pub struct SendGraph(/* private fields */);Expand description
Send/Sync newtype around Arc<CudaGraph>. cudarc marks
CudaGraph !Sync because of interior mutability via the CUDA
driver. The actor enforces single-threaded access.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SendGraph
impl RefUnwindSafe for SendGraph
impl Unpin for SendGraph
impl UnsafeUnpin for SendGraph
impl UnwindSafe for SendGraph
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