pub struct EnqueueRequest {
pub bindings: ExecutionBindings,
pub stream: Arc<CudaStream>,
pub reply: Sender<EnqueueReply>,
}Expand description
Standalone enqueue request type — embedded into the TrtActor’s
message enum but exposed here so the message dispatcher in
actor.rs and tests can construct it without crossing module
boundaries.
Fields§
§bindings: ExecutionBindings§stream: Arc<CudaStream>§reply: Sender<EnqueueReply>Auto Trait Implementations§
impl Freeze for EnqueueRequest
impl !RefUnwindSafe for EnqueueRequest
impl Send for EnqueueRequest
impl Sync for EnqueueRequest
impl Unpin for EnqueueRequest
impl UnsafeUnpin for EnqueueRequest
impl !UnwindSafe for EnqueueRequest
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