pub type ConnectorResult<T> = Result<T, ConnectorError>;
Expand description

Shorthand for a Result where the error variant is a ConnectorError.

Aliased Type§

enum ConnectorResult<T> {
    Ok(T),
    Err(ConnectorError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ConnectorError)

Contains the error value