pub struct PreparedToolBatch {
pub batch_id: String,
pub calls: Vec<PreparedToolBatchCall>,
}Expand description
Runtime-prepared executable tool batch.
The vector order is source order. Scheduling may run parallel-safe tools concurrently, but launches and pending completion consumption are projected back through this order.
Fields§
§batch_id: String§calls: Vec<PreparedToolBatchCall>Implementations§
Trait Implementations§
Source§impl Clone for PreparedToolBatch
impl Clone for PreparedToolBatch
Source§fn clone(&self) -> PreparedToolBatch
fn clone(&self) -> PreparedToolBatch
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 moreSource§impl Debug for PreparedToolBatch
impl Debug for PreparedToolBatch
Source§impl<'de> Deserialize<'de> for PreparedToolBatch
impl<'de> Deserialize<'de> for PreparedToolBatch
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PreparedToolBatch
impl RefUnwindSafe for PreparedToolBatch
impl Send for PreparedToolBatch
impl Sync for PreparedToolBatch
impl Unpin for PreparedToolBatch
impl UnsafeUnpin for PreparedToolBatch
impl UnwindSafe for PreparedToolBatch
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