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
//! Encoding/decoding and concatenation support for extra `SMPP` features.
pub mod fallback {
//! Fallback behavior for encoding/decoding and concatenation.
pub use rusmpp_extra::fallback::*;
}
pub mod encoding {
//! Encoding/decoding support.
pub use rusmpp_extra::encoding::owned::*;
pub mod errors {
//! Errors related to encoded message creation.
pub use rusmpp_extra::encoding::errors::*;
}
pub mod gsm7bit {
//! GSM 7-bit encoding/decoding support.
pub use rusmpp_extra::encoding::gsm7bit::*;
}
pub mod ucs2 {
//! UCS2 encoding/decoding support.
pub use rusmpp_extra::encoding::ucs2::*;
}
pub mod latin1 {
//! Latin1 encoding/decoding support.
pub use rusmpp_extra::encoding::latin1::*;
}
}
pub mod concatenation {
//! Concatenation support.
pub use rusmpp_extra::concatenation::{MAX_PARTS, MIN_PARTS, owned::*};
pub mod errors {
//! Errors related to concatenated message creation.
pub use rusmpp_extra::concatenation::errors::*;
}
}