1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*!
Contains many ffi-safe equivalents of standard library types.
The vast majority of them can be converted to and from std equivalents.

*/

pub mod arc;
pub mod boxed;
pub mod cmp_ordering;
pub mod cow;
pub mod option;
pub mod range;
pub mod result;
pub mod slice_mut;
pub mod slices;
pub mod static_slice;
pub mod static_str;
pub mod std_error;
pub mod std_io;
pub mod str;
pub mod string;
pub mod time;
pub mod tuple;
pub mod utypeid;
pub mod vec;

#[doc(inline)]
pub use self::{
    arc::RArc,
    boxed::RBox,
    cmp_ordering::RCmpOrdering,
    cow::RCow,
    option::{RNone, ROption, RSome},
    result::{RErr, ROk, RResult},
    slice_mut::RSliceMut,
    slices::RSlice,
    std_error::{RBoxError, UnsyncRBoxError},
    std_io::{RIoError, RIoErrorKind},
    str::RStr,
    string::RString,
    time::RDuration,
    tuple::{Tuple2, Tuple3, Tuple4},
    vec::RVec,
    utypeid::UTypeId,
    static_str::StaticStr,
    static_slice::StaticSlice,
};