pub trait IntoOptBStr {
type OptBStr: AsOptBStrPtr;
// Required method
fn into(self) -> Self::OptBStr;
}Expand description
Similar to Into<Option<BString>>, except that this won’t require copying
&BStr or &BString arguments. Additionally, you can use () in lieu of
None - whereas trying to pass None to a function accepting
Into<Option<BString>> would cause ambiguous type errors.