pub type SdkResult<T, E = UnknownApiBody> = Result<T, SdkError<E>>;Expand description
Result alias that uses SdkError as its error type.
Aliased Type§
pub enum SdkResult<T, E = UnknownApiBody> {
Ok(T),
Err(SdkError<E>),
}pub type SdkResult<T, E = UnknownApiBody> = Result<T, SdkError<E>>;Result alias that uses SdkError as its error type.
pub enum SdkResult<T, E = UnknownApiBody> {
Ok(T),
Err(SdkError<E>),
}