This website requires JavaScript.
Explore
Help
Sign in
matthiasbeyer
/
imag
Watch
1
Star
0
Fork
You've already forked imag
0
Code
Releases
Activity
975eb18905
imag
/
libimagentrytag
/
src
/
result.rs
7 lines
103 B
Rust
Raw
Normal View
History
Unescape
Escape
Add result type
2016-02-04 13:05:37 +00:00
use
std
::
result
::
Result
as
RResult
;
use
error
::
TagError
;
pub
type
Result
<
T
>
=
RResult
<
T
,
TagError
>
;
Copy permalink