[][src]Struct ipfs_api::request::Add

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.

Trait Implementations

impl<'a> ApiRequest for Add<'a>[src]

impl<'a> Default for Add<'a>[src]

impl<'a> Serialize for Add<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Add<'a>

impl<'a> Send for Add<'a>

impl<'a> Sync for Add<'a>

impl<'a> Unpin for Add<'a>

impl<'a> UnwindSafe for Add<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.