pub struct RequestBatch {
pub requests: Vec<BatchedRequest>,
pub module: String,
pub created_at: Instant,
}Expand description
A batch of requests ready for execution.
Fields§
§requests: Vec<BatchedRequest>Requests in the batch.
module: StringModule name.
created_at: InstantBatch creation time.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RequestBatch
impl RefUnwindSafe for RequestBatch
impl Send for RequestBatch
impl Sync for RequestBatch
impl Unpin for RequestBatch
impl UnsafeUnpin for RequestBatch
impl UnwindSafe for RequestBatch
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