pub struct BatchRequestOutput {
pub custom_id: Option<String>,
pub error: Option<BatchRequestOutputError>,
pub id: Option<String>,
pub response: Option<BatchRequestOutputResponse>,
}
Fields§
§custom_id: Option<String>
A developer-provided per-request id that will be used to match outputs to inputs.
error: Option<BatchRequestOutputError>
§id: Option<String>
§response: Option<BatchRequestOutputResponse>
Trait Implementations§
Source§impl Debug for BatchRequestOutput
impl Debug for BatchRequestOutput
Source§impl<'de> Deserialize<'de> for BatchRequestOutput
impl<'de> Deserialize<'de> for BatchRequestOutput
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 BatchRequestOutput
impl RefUnwindSafe for BatchRequestOutput
impl Send for BatchRequestOutput
impl Sync for BatchRequestOutput
impl Unpin for BatchRequestOutput
impl UnwindSafe for BatchRequestOutput
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