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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*!
Types and traits related to type erasure.
*/

use std::{
    cmp::{Eq, Ord, Ordering, PartialEq, PartialOrd},
    fmt::{Debug, Display},
    hash::{Hash, Hasher},
    ops::Deref,
};


use serde::{Serialize, Serializer};

use crate::{
    traits::{IntoReprC, IntoReprRust},
    std_types::{
        RBoxError, RCmpOrdering, RCow, RErr, ROk, ROption,RResult, RString,RStr,
        RSlice, RSliceMut
    },
    type_level::{
        //option::{Some_,None_,SomeTrait}
        bools::{Boolean, False, True},
    },
};

pub(crate)mod c_functions;

/// `impl InterfaceType`s used in examples.
pub mod interfaces;

pub mod trait_objects;

pub mod type_info;

pub(crate) mod iterator;

pub mod dyn_trait;

pub(crate) mod vtable;

pub mod traits;



pub use self::{
    dyn_trait::{DynTrait, DynTraitBound},
    vtable::{ GetVtable,InterfaceBound},
    traits::{
        ImplType, InterfaceType, SerializeImplType, DeserializeOwnedInterface,
        DeserializeBorrowedInterface,IteratorItem,
    },
    type_info::TypeInfo,
};


/// The formatting mode for all std::fmt formatters.
///
/// For Display,"{}" is Default_ "{:#}" is Alternate
///
/// For Debug,"{:?}" is Default_ "{:#?}" is Alternate
///
/// etc.
#[repr(C)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, StableAbi)]
#[sabi(inside_abi_stable_crate)]
pub enum FormattingMode {
    Default_,
    Alternate,
}