Enum query_projector_traits::errors::ProjectorError
[−]
[src]
pub enum ProjectorError { NotYetImplemented(String), CannotProjectImpossibleBinding(SimpleAggregationOp), CannotApplyAggregateOperationToTypes(SimpleAggregationOp, ValueTypeSet), InvalidProjection(String), UnboundVariable(PlainSymbol), NoTypeAvailableForVariable(PlainSymbol), UnexpectedResultsType(&'static str, &'static str), UnexpectedResultsTupleLength(usize, usize), AmbiguousAggregates(usize, usize), RusqliteError(String), DbError(DbError), PullError(PullError), }
Variants
NotYetImplemented(String)
We're just not done yet. Message that the feature is recognized but not yet implemented.
CannotProjectImpossibleBinding(SimpleAggregationOp)
CannotApplyAggregateOperationToTypes(SimpleAggregationOp, ValueTypeSet)
InvalidProjection(String)
UnboundVariable(PlainSymbol)
NoTypeAvailableForVariable(PlainSymbol)
UnexpectedResultsType(&'static str, &'static str)
UnexpectedResultsTupleLength(usize, usize)
AmbiguousAggregates(usize, usize)
RusqliteError(String)
DbError(DbError)
PullError(PullError)
Trait Implementations
impl Debug for ProjectorError
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl From<Error> for ProjectorError
[src]
fn from(error: Error) -> ProjectorError
[src]
Performs the conversion.
impl From<DbError> for ProjectorError
[src]
fn from(error: DbError) -> ProjectorError
[src]
Performs the conversion.
impl From<PullError> for ProjectorError
[src]
fn from(error: PullError) -> ProjectorError
[src]
Performs the conversion.