[][src]Type Definition abin::Str

type Str = AnyStr<Bin>;

A string backed by Bin (not Sync + Send), see SStr if you need Sync + Send.

use abin::{Str, NewStr, StrFactory};
let str : Str = NewStr::from_static("Hello");
assert_eq!("Hello", str.as_str());