docs.rs failed to build alien-platform-api-3.3.13
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
alien-platform-api-3.3.12
Alien Platform API
Auto-generated from OpenAPI spec with custom error conversion support.
Error Handling
For SDK API calls, use SdkResultExt::into_sdk_error() instead of
.into_alien_error() to preserve structured API error information:
use alien_platform_api::SdkResultExt;
// ✅ Good: preserves API error code, message, retryable flag
client.some_method().send().await.into_sdk_error().context(...)?
// ❌ Bad: loses structured error information
client.some_method().send().await.into_alien_error().context(...)?
For non-SDK errors (serde, std, etc.), continue using .into_alien_error().