troika_rust/
lib.rs

1/*
2 * Copyright (C) 2019 Yu-Wei Wu
3 * All Rights Reserved.
4 * This is free software; you can redistribute it and/or modify it under the
5 * terms of the MIT license. A copy of the license can be found in the file
6 * "LICENSE" at the root of this distribution.
7 */
8
9extern crate failure;
10
11pub use self::ftroika::*;
12pub use self::troika::*;
13
14pub mod ftroika;
15mod macros;
16pub mod troika;
17
18use core::result;
19
20pub type Result<T> = result::Result<T, failure::Error>;