Enum query_projector_traits::errors::ProjectorError [] [src]

pub enum ProjectorError {
    NotYetImplemented(String),
    CannotProjectImpossibleBinding(SimpleAggregationOp),
    CannotApplyAggregateOperationToTypes(SimpleAggregationOpValueTypeSet),
    InvalidProjection(String),
    UnboundVariable(PlainSymbol),
    NoTypeAvailableForVariable(PlainSymbol),
    UnexpectedResultsType(&'static str, &'static str),
    UnexpectedResultsTupleLength(usizeusize),
    AmbiguousAggregates(usizeusize),
    RusqliteError(String),
    DbError(DbError),
    PullError(PullError),
}

Variants

We're just not done yet. Message that the feature is recognized but not yet implemented.

Trait Implementations

impl Debug for ProjectorError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Error> for ProjectorError
[src]

[src]

Performs the conversion.

impl From<DbError> for ProjectorError
[src]

[src]

Performs the conversion.

impl From<PullError> for ProjectorError
[src]

[src]

Performs the conversion.