We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
E.g. on windows, some APIs might wish to take something similar to TryIntoAsCStr<u16>, taking:
TryIntoAsCStr<u16>
&Path
&str
abistr::CStrNonNull<u16>
And others might wish to take something similar to TryIntoAsOptCStr<u16>, taking:
TryIntoAsOptCStr<u16>
Option<&Path>
Option<&str>
abistr::CStrPtr<u16>
Is this even in-scope for this crate, or should it be exiled to e.g. winstr?
winstr
The text was updated successfully, but these errors were encountered:
No branches or pull requests
E.g. on windows, some APIs might wish to take something similar to
TryIntoAsCStr<u16>
, taking:&Path
(instead of&str
)abistr::CStrNonNull<u16>
And others might wish to take something similar to
TryIntoAsOptCStr<u16>
, taking:Option<&Path>
(instead ofOption<&str>
)abistr::CStrPtr<u16>
Is this even in-scope for this crate, or should it be exiled to e.g.
winstr
?The text was updated successfully, but these errors were encountered: