pub type Result<T, E = Error> = Result<T, E>;Expand description
Result type for RunPod API operations.
This is a convenience type alias for std::result::Result<T, Error> that is used
throughout the RunPod SDK. All SDK methods that can fail return this Result type.
Aliased Type§
pub enum Result<T, E = Error> {
Ok(T),
Err(E),
}