1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//! anycms-core
//!
//! A unified API response library supporting multiple Rust web frameworks.
//!
//! ## Features
//! - `actix` (default): Support for actix-web framework
//! - `axum`: Support for axum framework
//! - `full`: Enable all framework integrations
//!
//! ## Basic Usage
//! ```rust
//! use anycms_core::ApiResult;
//! use serde::Serialize;
//!
//! #[derive(Serialize)]
//! struct User {
//! id: u32,
//! name: String,
//! }
//!
//! fn handle_request() -> ApiResult<User> {
//! let user = User { id: 1, name: "Alice".to_string() };
//! ApiResult::value(user)
//! }
//! ```
//!
//! ## Error Handling
//! ```rust
//! use anycms_core::{ApiResult, ApiError};
//!
//! fn handle_error() -> ApiResult<String> {
//! ApiError::not_found("Resource not found").into()
//! }
//! ```
// Framework-specific implementations
// Core exports (always available)
pub use ResultPagination;
pub use ;
// Framework-specific exports (available only when corresponding feature is enabled)
pub use actix;
pub use axum;