Docs.rs
ntex-error-1.5.0
ntex-error 1.5.0
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
fafhrd91
Dependencies
backtrace ^0.3.76
normal
foldhash ^0.2.0
normal
ntex-bytes ^1.5.2
normal
thiserror ^2
normal
derive_more ^2.0.1
dev
ntex ^3.6.2
dev
thiserror ^2
dev
Versions
30.3%
of the crate is documented
Go to latest version
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
ErrorMapping
ntex_
error
1.5.0
Error
Mapping
Required Methods
into_error
Implementations on Foreign Types
Result<T, E>
Result<T, Error<E>>
Implementors
In crate ntex_
error
ntex_error
Trait
Error
Mapping
Copy item path
Source
pub trait ErrorMapping<T, E, U> { // Required method fn
into_error
(self) ->
Result
<T,
Error
<U>>; }
Required Methods
§
Source
fn
into_error
(self) ->
Result
<T,
Error
<U>>
Implementations on Foreign Types
§
Source
§
impl<T, E, U>
ErrorMapping
<T, E, U> for
Result
<T,
Error
<E>>
where U:
From
<E>, E:
Clone
,
Source
§
fn
into_error
(self) ->
Result
<T,
Error
<U>>
Source
§
impl<T, E, U>
ErrorMapping
<T, E, U> for
Result
<T, E>
where U:
From
<E>,
Source
§
fn
into_error
(self) ->
Result
<T,
Error
<U>>
Implementors
§