Module drone::prelude [] [src]

The Drone Prelude.

It is an analogue of std::prelude, which is not available in #![no_std] contexts.

To automatically inject the imports into every module, place this code to the crate root:

#![feature(prelude_import)]

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

Re-exports

pub use core::prelude::v1::*;

Structs

Box

A pointer type for heap allocation.

String

A UTF-8 encoded, growable string.

Vec

A contiguous growable array type, written Vec<T> but pronounced 'vector'.

Traits

ToOwned

A generalization of Clone to borrowed data.

ToString

A trait for converting a value to a String.

SliceConcatExt [
Experimental
]

An extension trait for concatenating slices