1use super::*;
2
3#[repr(transparent)]
5#[derive(Clone, Copy, PartialEq, Eq, Debug)]
6pub struct PSTR(pub *mut u8);
7
8impl PSTR {
9 pub const fn from_raw(ptr: *mut u8) -> Self {
11 Self(ptr)
12 }
13
14 pub const fn null() -> Self {
16 Self(core::ptr::null_mut())
17 }
18
19 pub const fn as_ptr(&self) -> *mut u8 {
21 self.0
22 }
23
24 pub fn is_null(&self) -> bool {
26 self.0.is_null()
27 }
28
29 pub unsafe fn as_bytes(&self) -> &[u8] {
35 unsafe {
36 let len = strlen(PCSTR::from_raw(self.0));
37 core::slice::from_raw_parts(self.0, len)
38 }
39 }
40
41 pub unsafe fn to_string(&self) -> core::result::Result<String, alloc::string::FromUtf8Error> {
47 unsafe { String::from_utf8(self.as_bytes().into()) }
48 }
49
50 pub unsafe fn display(&self) -> impl core::fmt::Display + '_ {
56 unsafe { Decode(move || decode_utf8(self.as_bytes())) }
57 }
58}
59
60impl Default for PSTR {
61 fn default() -> Self {
62 Self::null()
63 }
64}