pub type MatcherResult = Result<JsonlStream, ExecutorError>;Available on crate feature
std only.Expand description
A live JSONL graph stream, or an error starting the matcher.
Aliased Type§
pub enum MatcherResult {
Ok(Pin<Box<dyn Stream<Item = Result<JsonlBatch, ExecutorError>> + Send>>),
Err(ExecutorError),
}Variants§
Ok(Pin<Box<dyn Stream<Item = Result<JsonlBatch, ExecutorError>> + Send>>)
Contains the success value
Err(ExecutorError)
Contains the error value