PgResult

Type Alias PgResult 

Source
pub type PgResult<T> = Result<T, PgEmbedError>;

Aliased Type§

pub enum PgResult<T> {
    Ok(T),
    Err(PgEmbedError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(PgEmbedError)

Contains the error value