pub struct CompositeBatchSubrequest {
pub method: String,
pub url: String,
pub rich_input: Option<Value>,
pub binary_part_name: Option<String>,
pub binary_part_name_alias: Option<String>,
}Expand description
A single subrequest within a composite batch request.
Fields§
§method: String§url: String§rich_input: Option<Value>§binary_part_name: Option<String>§binary_part_name_alias: Option<String>Trait Implementations§
Source§impl Clone for CompositeBatchSubrequest
impl Clone for CompositeBatchSubrequest
Source§fn clone(&self) -> CompositeBatchSubrequest
fn clone(&self) -> CompositeBatchSubrequest
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 CompositeBatchSubrequest
impl Debug for CompositeBatchSubrequest
Source§impl<'de> Deserialize<'de> for CompositeBatchSubrequest
impl<'de> Deserialize<'de> for CompositeBatchSubrequest
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CompositeBatchSubrequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CompositeBatchSubrequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for CompositeBatchSubrequest
impl Serialize for CompositeBatchSubrequest
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 CompositeBatchSubrequest
impl RefUnwindSafe for CompositeBatchSubrequest
impl Send for CompositeBatchSubrequest
impl Sync for CompositeBatchSubrequest
impl Unpin for CompositeBatchSubrequest
impl UnwindSafe for CompositeBatchSubrequest
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