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 Debug
the original query
Couldn’t find any matching nodes in the time allotted.
Fields of Timeout
lookup: &'a dyn Debug
the original query
Found more nodes than the 1 requested.
Fields of TooMany
Trait Implementations
Auto Trait Implementations
impl<'a, N> !RefUnwindSafe for QueryError<'a, N>
impl<'a, N> !Send for QueryError<'a, N>
impl<'a, N> !Sync for QueryError<'a, N>
impl<'a, N> Unpin for QueryError<'a, N> where
N: Unpin,
impl<'a, N> !UnwindSafe for QueryError<'a, N>
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