netcorehost 0.20.1

A Rust library for hosting the .NET Core runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub(crate) type PdCStringInnerImpl = widestring::U16CString;
pub(crate) type PdCStrInnerImpl = widestring::U16CStr;
pub(crate) type ToStringErrorInnerImpl = widestring::error::Utf16Error;
pub(crate) type MissingNulTerminatorInnerImpl = widestring::error::MissingNulTerminator;

mod pdcstr;
pub use pdcstr::*;

mod pdcstring;
#[allow(unused)]
pub use pdcstring::*;

mod error;
#[allow(unused)]
pub use error::*;

mod ext;
pub use ext::*;