pub struct BatchDetectSyntaxResponse {
pub error_list: Vec<BatchItemError>,
pub result_list: Vec<BatchDetectSyntaxItemResult>,
}
Fields§
§error_list: Vec<BatchItemError>
A list containing one object for each document that contained an error. The results are sorted in ascending order by the Index
field and match the order of the documents in the input list. If there are no errors in the batch, the ErrorList
is empty.
result_list: Vec<BatchDetectSyntaxItemResult>
A list of objects containing the results of the operation. The results are sorted in ascending order by the Index
field and match the order of the documents in the input list. If all of the documents contain an error, the ResultList
is empty.
Trait Implementations§
Source§impl Clone for BatchDetectSyntaxResponse
impl Clone for BatchDetectSyntaxResponse
Source§fn clone(&self) -> BatchDetectSyntaxResponse
fn clone(&self) -> BatchDetectSyntaxResponse
Returns a copy 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 BatchDetectSyntaxResponse
impl Debug for BatchDetectSyntaxResponse
Source§impl Default for BatchDetectSyntaxResponse
impl Default for BatchDetectSyntaxResponse
Source§fn default() -> BatchDetectSyntaxResponse
fn default() -> BatchDetectSyntaxResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchDetectSyntaxResponse
impl<'de> Deserialize<'de> for BatchDetectSyntaxResponse
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
impl StructuralPartialEq for BatchDetectSyntaxResponse
Auto Trait Implementations§
impl Freeze for BatchDetectSyntaxResponse
impl RefUnwindSafe for BatchDetectSyntaxResponse
impl Send for BatchDetectSyntaxResponse
impl Sync for BatchDetectSyntaxResponse
impl Unpin for BatchDetectSyntaxResponse
impl UnwindSafe for BatchDetectSyntaxResponse
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