Structs§
- Diplomat
Owned Slice - This is equivalent to
Box<[T]>. - Diplomat
OwnedUT F8Str Slice - This is equivalent to
Box<str>, except it has a stablerepr(C)layout - Diplomat
Slice - This is equivalent to
&[T], except it has a stablerepr(C)layout - Diplomat
Slice Mut - This is equivalent to
&mut [T], except it has a stable repr(C) layout - Diplomat
Utf8 StrSlice - This is equivalent to
&str, except it has a stablerepr(C)layout
Type Aliases§
- Diplomat
Owned Str16 Slice - An unvalidated, owned UTF-16 string that is safe to use over FFI
- Diplomat
Owned StrSlice - This like
Box<str>, but unvalidated and safe to use over FFI - Diplomat
Str16 Slice - An unvalidated UTF-16 string that is safe to use over FFI
- Diplomat
StrSlice - This like
&str, but unvalidated and safe to use over FFI