devela_base_std 0.26.0

base std shared functionality for devela
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// devela_base_std::text::str:_reexport

#![allow(unused_imports)]

use crate::{_TAG_LIFETIME, _TAG_PLATFORM, _TAG_TEXT, _reexport};

_reexport! { rust: std::ffi, location: "text/str",
    tag: _TAG_TEXT!() _TAG_LIFETIME!() _TAG_PLATFORM!(),
    doc: "Borrowed reference to an OS string (See [`OsString`]).",
    OsStr
}
_reexport! { rust: std::ffi, location: "text/str", tag: _TAG_TEXT!() _TAG_PLATFORM!(),
    doc: "A type for owned, mutable native strings, interconvertible with Rust strings.",
    OsString
}