Docs.rs
triable-0.1.2
triable 0.1.2
Permalink
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
SimonSapin
Dependencies
Versions
0%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
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
triable
0.1.2
Triable
Required Methods
try
Implementations on Foreign Types
Option<T1>
Option<T1>
Option<T>
Result<T1, ()>
Result<T1, Err1>
Result<T, ()>
bool
bool
bool
Implementors
In crate triable
triable
Trait
Triable
Copy item path
Source
pub trait Triable<Expr, Return> { // Required method fn
try
(self) ->
TriableResult
<Expr, Return>; }
Required Methods
§
Source
fn
try
(self) ->
TriableResult
<Expr, Return>
Implementations on Foreign Types
§
Source
§
impl
Triable
<
()
,
bool
> for
bool
Source
§
fn
try
(self) ->
TriableResult
<
()
,
bool
>
Source
§
impl<T1, T2>
Triable
<T1,
Option
<T2>> for
Option
<T1>
Source
§
fn
try
(self) ->
TriableResult
<T1,
Option
<T2>>
Source
§
impl<T1, T2>
Triable
<T1,
Option
<T2>> for
Result
<T1,
()
>
Source
§
fn
try
(self) ->
TriableResult
<T1,
Option
<T2>>
Source
§
impl<T1, T2>
Triable
<T1,
Result
<T2,
()
>> for
Option
<T1>
Source
§
fn
try
(self) ->
TriableResult
<T1,
Result
<T2,
()
>>
Source
§
impl<T1, T2, Err1, Err2>
Triable
<T1,
Result
<T2, Err2>> for
Result
<T1, Err1>
where Err2:
From
<Err1>,
Source
§
fn
try
(self) ->
TriableResult
<T1,
Result
<T2, Err2>>
Source
§
impl<T>
Triable
<
()
,
Option
<T>> for
bool
Source
§
fn
try
(self) ->
TriableResult
<
()
,
Option
<T>>
Source
§
impl<T>
Triable
<
()
,
Result
<T,
()
>> for
bool
Source
§
fn
try
(self) ->
TriableResult
<
()
,
Result
<T,
()
>>
Source
§
impl<T>
Triable
<T,
bool
> for
Option
<T>
Source
§
fn
try
(self) ->
TriableResult
<T,
bool
>
Source
§
impl<T>
Triable
<T,
bool
> for
Result
<T,
()
>
Source
§
fn
try
(self) ->
TriableResult
<T,
bool
>
Implementors
§