1#![warn(missing_docs)]
11#![warn(missing_debug_implementations)]
12#![warn(rust_2018_idioms)]
13
14pub mod ot;
15pub use openthread_sys as otsys;
16
17#[cfg(target_os = "fuchsia")]
18mod otfuchsia;
19
20pub type OtBox<T> = ot::Box<T>;
22
23pub type OtInstanceBox = ot::Box<ot::Instance>;
25
26pub type OtMessageBox<'a> = ot::Box<ot::Message<'a>>;
28
29#[macro_use]
31pub mod prelude {
32 #![allow(unused_imports)]
33
34 pub use crate::{ot, otsys, OtBox, OtInstanceBox, OtMessageBox};
35 pub use ot::{
36 BackboneRouter as _, BorderRouter as _, Boxable as _, Dnssd as _, DnssdExt as _,
37 IntoOtError as _, Ip6 as _, Link as _, MessageBuffer as _, OtCastable as _, Reset as _,
38 SrpServer as _, State as _, Tasklets as _, Thread as _, Udp as _, Uptime as _,
39 };
40
41 pub use ot::TaskletsStreamExt as _;
42 pub use std::convert::{TryFrom as _, TryInto as _};
43}
44
45#[doc(hidden)]
47#[macro_use]
48pub(crate) mod prelude_internal {
49 #![allow(unused_imports)]
50
51 pub use crate::impl_ot_castable;
52 pub use crate::otsys::*;
53 pub use crate::prelude::*;
54 pub use core::convert::{TryFrom, TryInto};
55 pub use futures::prelude::*;
56 pub use log::{debug, error, info, trace, warn};
57 pub use num::FromPrimitive as _;
58 pub(crate) use ot::ascii_dump;
59 pub use ot::types::*;
60 pub use ot::{
61 BackboneRouter, BorderRouter, Boxable, Error, Instance, InstanceInterface, Ip6, Link,
62 Message, MessageBuffer, Platform, Result, SrpServer, Tasklets, Thread,
63 };
64 pub use static_assertions as sa;
65 pub use std::ffi::{CStr, CString};
66 pub use std::marker::PhantomData;
67 pub use std::os::raw::c_char;
68 pub use std::ptr::null;
69}