devela 0.27.0

A development layer of coherence.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// devela::text::str::_reexport_alloc

#![allow(unused_imports)]

use crate::{_reexport, _tags};

_reexport! { rust: alloc::string, location: "text/str", tag: _tags!(text error),
    doc: "A possible error value when converting a String from a UTF-8 byte vector.",
    FromUtf8Error
}
_reexport! { rust: alloc::string, location: "text/str", tag: _tags!(text),
    doc: "A UTF-8–encoded, growable string.",
    String
}
_reexport! { rust: alloc::string, location: "text/str", tag: _tags!(text value),
    doc: "A trait for converting a value to a [`String`].",
    ToString
}