You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This library intends to paper over the undefined representation of CStr by offering both versions and guaranteeing their performance/storage characteristics. It also re-exports std types when that feature is used. If &CStr is ever fixed to be a single pointer (and thus becomes equivalent to CStrPtr) then the types this crate exports for std need to accommodate that by re-exporting std::ffi::CStr as CStrPtr. It would then offer a custom &CStr pointer implementing the old behaviour.
rustversion would be good to use when the time comes? However, consider that CStrPtr doesn't currently exist due to custom DSTs not being usable, which means that offering &CStrPtr instead of CStrPtr<'_> will require a newer rustc anyway. I suppose a third type name will need to be decided on?
This library intends to paper over the undefined representation of
CStr
by offering both versions and guaranteeing their performance/storage characteristics. It also re-exportsstd
types when that feature is used. If&CStr
is ever fixed to be a single pointer (and thus becomes equivalent toCStrPtr
) then the types this crate exports forstd
need to accommodate that by re-exportingstd::ffi::CStr as CStrPtr
. It would then offer a custom&CStr
pointer implementing the old behaviour.rustversion would be good to use when the time comes? However, consider that
CStrPtr
doesn't currently exist due to custom DSTs not being usable, which means that offering&CStrPtr
instead ofCStrPtr<'_>
will require a newerrustc
anyway. I suppose a third type name will need to be decided on?&FatCStr
&CStr
CStrPtr
This naming change could (and maybe should) happen sooner rather than later, then simply do not have
&CStr
until there's a good way to create it. See also prior art usingextern { type c_char; }
, and the rustc tracking issue.The text was updated successfully, but these errors were encountered: