pub struct Add<'a> {
    pub trickle: Option<bool>,
    pub only_hash: Option<bool>,
    pub wrap_with_directory: Option<bool>,
    pub chunker: Option<&'a str>,
    pub pin: Option<bool>,
    pub raw_leaves: Option<bool>,
    pub cid_version: Option<u32>,
    pub hash: Option<&'a str>,
    pub inline: Option<bool>,
    pub inline_limit: Option<u32>,
}

Fields

trickle: Option<bool>

Use trickle-dag format for dag generation.

only_hash: Option<bool>

Only chunk and hash - do not write to disk.

wrap_with_directory: Option<bool>

Wrap files with a directory object.

chunker: Option<&'a str>

Chunking algorithm, size-[bytes], rabin-[min]-[avg]-[max] or buzhash.

pin: Option<bool>

Pin this object when adding. Defaults to true.

raw_leaves: Option<bool>

Use raw blocks for leaf nodes. (experimental).

cid_version: Option<u32>

CID version. Defaults to 0 unless an option that depends on CIDv1 is passed. (experimental).

hash: Option<&'a str>

Hash function to use. Implies CIDv1 if not sha2-256. (experimental). Default: sha2-256.

inline: Option<bool>

Inline small blocks into CIDs. (experimental).

inline_limit: Option<u32>

Maximum block size to inline. (experimental). Default: 32.

Implementations

Create a builder for building Add. On the builder, call .trickle(...)(optional), .only_hash(...)(optional), .wrap_with_directory(...)(optional), .chunker(...)(optional), .pin(...)(optional), .raw_leaves(...)(optional), .cid_version(...)(optional), .hash(...)(optional), .inline(...)(optional), .inline_limit(...)(optional) to set the values of the fields. Finally, call .build() to create the instance of Add.

Trait Implementations

Returns the API path that this request can be called on. Read more

Method used to make the request. Read more

Creates the absolute URL for an API resource given the base path of the service. Read more

Returns the “default value” for a type. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more