Enum augdom::testing::QueryError [−][src]
pub enum QueryError<'a, N> {
Missing {
lookup: &'a dyn Debug,
},
Timeout {
lookup: &'a dyn Debug,
},
TooMany {
matched: N,
extra: Vec<N>,
lookup: &'a dyn Debug,
},
}Expand description
The outcome of a failed query.
Variants
Couldn’t find any matching nodes.
Fields of Missing
lookup: &'a dyn Debugthe original query
Couldn’t find any matching nodes in the time allotted.
Fields of Timeout
lookup: &'a dyn Debugthe original query
Found more nodes than the 1 requested.