pub type GdsExportResult<T> = Result<T, GdsExportError>;
Expand description

The GdsExportError result type.

Aliased Type§

enum GdsExportResult<T> {
    Ok(T),
    Err(GdsExportError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(GdsExportError)

Contains the error value