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>,
pub to_files: Option<&'a str>,
}
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
.
to_files: Option<&'a str>
Add reference to Files API (MFS) at the provided path
Implementations§
Source§impl<'a> Add<'a>
impl<'a> Add<'a>
Sourcepub fn builder() -> AddBuilder<'a, ((), (), (), (), (), (), (), (), (), (), ())>
pub fn builder() -> AddBuilder<'a, ((), (), (), (), (), (), (), (), (), (), ())>
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_files(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of Add
.