Skip to main content

ferro_rs/http/resources/
mod.rs

1/// Cursor and offset pagination envelope types.
2pub mod pagination;
3/// Single-resource transformation trait.
4pub mod resource;
5/// Paginated resource collection with metadata.
6pub mod resource_collection;
7/// Key-value resource builder with conditional fields.
8pub mod resource_map;
9
10pub use pagination::{PaginationLinks, PaginationMeta};
11pub use resource::Resource;
12pub use resource_collection::ResourceCollection;
13pub use resource_map::ResourceMap;