Docs.rs
grafix-toolbox-0.8.33
grafix-toolbox 0.8.33
Docs.rs crate page
MIT
Links
Homepage
Repository
crates.io
Source
Owners
installgentoo
Dependencies
bitflags ^2
normal
faster-hex ^0.10
normal
optional
fastrand ^2
normal
optional
futures-lite ^2
normal
gl ^0.14
normal
grafix-toolbox-macros ^1
normal
half ^2
normal
image ^0.25
normal
nalgebra ^0.34
normal
notify ^8
normal
optional
parking_lot ^0.12
normal
rusttype ^0.9
normal
optional
sdl2 ^0.38
normal
serde ^1
normal
optional
serde_json ^1
normal
optional
tobj ^4
normal
optional
tokio ^1
normal
tokio-stream ^0.1
normal
yansi ^1
normal
zstd ^0.13
normal
optional
Versions
1.88%
of the crate is documented
Platform
aarch64-apple-darwin
aarch64-unknown-linux-gnu
i686-pc-windows-msvc
x86_64-pc-windows-msvc
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
Skip to main content
FlattenError
grafix_
toolbox
0.8.33
Flatten
Error
Required Methods
chain_err
Implementations on Foreign Types
Option<Result<T, E>>
Result<Option<T>, E>
Result<Result<T, E1>, E2>
Implementors
In grafix_
toolbox::
lib
grafix_toolbox
::
lib
Trait
Flatten
Error
Copy item path
Source
pub trait FlattenError<T> { // Required method fn
chain_err
(self) ->
Res
<T>; }
Required Methods
§
Source
fn
chain_err
(self) ->
Res
<T>
Implementations on Foreign Types
§
Source
§
impl<T, E1:
Display
, E2:
Display
>
FlattenError
<T> for
Result
<
Result
<T, E1>, E2>
Source
§
fn
chain_err
(self) ->
Res
<T>
Source
§
impl<T, E:
Display
>
FlattenError
<T> for
Option
<
Result
<T, E>>
Source
§
fn
chain_err
(self) ->
Res
<T>
Source
§
impl<T, E:
Display
>
FlattenError
<T> for
Result
<
Option
<T>, E>
Source
§
fn
chain_err
(self) ->
Res
<T>
Implementors
§