Module drone_core::prelude[][src]

The Drone Prelude.

By default Rust automatically injects libcore prelude imports into every module. To inject the Drone prelude instead, place the following code to the src/lib.rs:

#![feature(prelude_import)]

#[prelude_import]
#[allow(unused_imports)]
use drone_core::prelude::*;

Re-exports

pub use core::prelude::v1::*;
pub use alloc::prelude::v1::*;
pub use crate::dbg;
pub use crate::eprint;
pub use crate::eprintln;
pub use crate::print;
pub use crate::println;