pub enum ApiResponseCode {
LatitudeError(LatitudeErrorCodes),
RunError(RunErrorCodes),
ApiError(ApiErrorCodes),
}
Expand description
Unified error code type that includes all possible error codes returned by the API.
Variants§
LatitudeError(LatitudeErrorCodes)
Error code for Latitude-specific issues.
RunError(RunErrorCodes)
Error code for document execution (Run) issues.
ApiError(ApiErrorCodes)
General API error code.
Trait Implementations§
Source§impl Debug for ApiResponseCode
impl Debug for ApiResponseCode
Auto Trait Implementations§
impl Freeze for ApiResponseCode
impl RefUnwindSafe for ApiResponseCode
impl Send for ApiResponseCode
impl Sync for ApiResponseCode
impl Unpin for ApiResponseCode
impl UnwindSafe for ApiResponseCode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more