Struct ipfs_api_backend_hyper::request::Add [−][src]
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
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations
impl<'a> RefUnwindSafe for Add<'a>
impl<'a> UnwindSafe for Add<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
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