IntegrationResult

Type Alias IntegrationResult 

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

Result type for integration layer operations

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