Struct aws_sdk_comprehend::output::BatchDetectKeyPhrasesOutput [−][src]
#[non_exhaustive]pub struct BatchDetectKeyPhrasesOutput {
pub result_list: Option<Vec<BatchDetectKeyPhrasesItemResult>>,
pub error_list: Option<Vec<BatchItemError>>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.result_list: Option<Vec<BatchDetectKeyPhrasesItemResult>>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.
error_list: Option<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.
Implementations
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.
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.
Creates a new builder-style object to manufacture BatchDetectKeyPhrasesOutput
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for BatchDetectKeyPhrasesOutput
impl Send for BatchDetectKeyPhrasesOutput
impl Sync for BatchDetectKeyPhrasesOutput
impl Unpin for BatchDetectKeyPhrasesOutput
impl UnwindSafe for BatchDetectKeyPhrasesOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more