pub type Result<T> = Result<T, FlightError>;
Expand description
Result type for the Apache Arrow Flight crate
Aliased Type§
enum Result<T> {
Ok(T),
Err(FlightError),
}
pub type Result<T> = Result<T, FlightError>;
Result type for the Apache Arrow Flight crate
enum Result<T> {
Ok(T),
Err(FlightError),
}