Skip to main content

IntegrationResult

Type Alias IntegrationResult 

Source
pub type IntegrationResult<T> = Result<T, IntegrationError>;

Aliased Type§

pub enum IntegrationResult<T> {
    Ok(T),
    Err(IntegrationError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(IntegrationError)

Contains the error value