Docs.rs
fvm-0.7.0
fvm 0.7.0
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Repository
crates.io
Source
Owners
github:filecoin-project:fvm-crate-owners
filecoin-crate-owner
Dependencies
ahash ^0.7
normal
anyhow ^1.0.47
normal
anymap ^0.12.1
normal
blake2b_simd ^1.0.0
normal
byteorder ^1.4.3
normal
cid ^0.8.2
normal
derive-getters ^0.2.0
normal
derive_builder ^0.10
normal
derive_more ^0.99.17
normal
filecoin-proofs-api ^11
normal
fvm_ipld_amt ^0.4.0
normal
fvm_ipld_blockstore ^0.1.0
normal
fvm_ipld_encoding ^0.1.0
normal
fvm_ipld_hamt ^0.5.0
normal
fvm_shared ^0.6.0
normal
lazy_static ^1.4.0
normal
log ^0.4.14
normal
multihash ^0.16.1
normal
num-derive ^0.3.3
normal
num-traits ^0.2
normal
num_cpus ^1.13.0
normal
rayon ^1
normal
replace_with ^0.1.7
normal
serde ^1.0
normal
serde_repr ^0.1
normal
serde_tuple ^0.5
normal
thiserror ^1.0.30
normal
wasmtime ^0.35.2
normal
Versions
75%
of the crate is documented
Go to latest version
Platform
i686-unknown-linux-gnu
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
☰
Result
Trait Implementations
Context
In fvm::kernel
?
Type Definition
fvm
::
kernel
::
Result
source
·
[
−
]
pub type Result<T> =
Result
<T,
ExecutionError
>;
Expand description
Execution result.
Trait Implementations
source
impl<T>
Context
for
Result
<T>
type
WithContext
=
Result
<T,
ExecutionError
>
source
fn
context
<D:
Display
>(self, context: D) -> Self::
WithContext
source
fn
with_context
<D, F>(self, cfn: F) -> Self::
WithContext
where
D:
Display
,
F:
FnOnce
() -> D,