swarm_nl::core

Type Alias AppResponseResult

Source
pub type AppResponseResult = Result<AppResponse, NetworkError>;
Expand description

Type that represents the response of the network layer to the application layer’s event handler.

Aliased Type§

enum AppResponseResult {
    Ok(AppResponse),
    Err(NetworkError),
}

Variants§

§1.0.0

Ok(AppResponse)

Contains the success value

§1.0.0

Err(NetworkError)

Contains the error value