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

This module contains structures returned by the IPFS API.

Structs

A wrapper for Backend / IpfsApi that adds global options
Implements the multipart/form-data media type as described by RFC 7578.
Options valid on any IPFS Api request

Enums

Traits