Expand description
Connect to an IPFS API using a client implemented with Actix.
§Example
use ipfs_api_backend_actix::{IpfsApi, IpfsClient};
use ipfs_api_backend_actix::response::VersionResponse;
async fn example() -> Result<VersionResponse, ipfs_api_backend_actix::Error> {
let client = IpfsClient::default();
client.version().await
}
Modules§
Structs§
- ApiError
- Backend
With Global Options - A wrapper for Backend / IpfsApi that adds global options
- Form
- Implements the multipart/form-data media type as described by RFC 7578.
- Global
Options - Options valid on any IPFS Api request
- Ipfs
Client