pub struct CompositeBatchRequest {
pub batch_requests: Vec<CompositeBatchSubrequest>,
pub halt_on_error: bool,
}Expand description
A composite batch request containing multiple independent subrequests.
Unlike the standard composite request, batch subrequests are executed independently and cannot reference each other’s results. Available since API v34.0.
Fields§
§batch_requests: Vec<CompositeBatchSubrequest>§halt_on_error: boolTrait Implementations§
Source§impl Clone for CompositeBatchRequest
impl Clone for CompositeBatchRequest
Source§fn clone(&self) -> CompositeBatchRequest
fn clone(&self) -> CompositeBatchRequest
Returns a duplicate of the value. Read more
1.0.0 · 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 CompositeBatchRequest
impl Debug for CompositeBatchRequest
Source§impl Serialize for CompositeBatchRequest
impl Serialize for CompositeBatchRequest
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for CompositeBatchRequest
impl RefUnwindSafe for CompositeBatchRequest
impl Send for CompositeBatchRequest
impl Sync for CompositeBatchRequest
impl Unpin for CompositeBatchRequest
impl UnwindSafe for CompositeBatchRequest
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