Skip to main content

QueryServiceResult

Type Alias QueryServiceResult 

Source
pub type QueryServiceResult = Result<Payload, QueryError>;
Expand description

Result returned by QueryService::query.

Aliased Type§

pub enum QueryServiceResult {
    Ok(Payload),
    Err(QueryError),
}

Variants§

§1.0.0

Ok(Payload)

Contains the success value

§1.0.0

Err(QueryError)

Contains the error value