Crate ceres_std[][src]

Expand description

Ceres std adaptor

Re-exports

pub extern crate alloc;

Modules

fmt

Utilities for formatting and printing Strings.

vec

A contiguous growable array type with heap-allocated contents, written Vec<T>.

Macros

format

Creates a String using interpolation of runtime expressions.

vec

Creates a Vec containing the arguments.

Structs

BTreeMap

A map based on a B-Tree.

Box

A pointer type for heap allocation.

Rc

A single-threaded reference-counting pointer. ‘Rc’ stands for ‘Reference Counted’.

String

A UTF-8–encoded, growable string.

Vec

A contiguous growable array type, written as Vec<T> and pronounced ‘vector’.

Traits

ToOwned

A generalization of Clone to borrowed data.

ToString

A trait for converting a value to a String.