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
// - Since `needle` is `&str`, any split will be along UTF-8 boundary
231
+
unsafe{
232
+
Some((
233
+
OsStr::from_encoded_bytes_unchecked(first),
234
+
OsStr::from_encoded_bytes_unchecked(second),
235
+
))
236
+
}
232
237
}
233
238
}
234
239
@@ -238,45 +243,6 @@ mod private {
238
243
implSealedfor std::ffi::OsStr{}
239
244
}
240
245
241
-
/// Allow access to raw bytes
242
-
///
243
-
/// As the non-UTF8 encoding is not defined, the bytes only make sense when compared with
244
-
/// 7-bit ASCII or `&str`
245
-
///
246
-
/// # Compatibility
247
-
///
248
-
/// There is no guarantee how non-UTF8 bytes will be encoded, even within versions of this crate
249
-
/// (since its dependent on rustc)
250
-
fnto_bytes(s:&OsStr) -> &[u8]{
251
-
// SAFETY:
252
-
// - Lifetimes are the same
253
-
// - Types are compatible (`OsStr` is effectively a transparent wrapper for `[u8]`)
254
-
// - The primary contract is that the encoding for invalid surrogate code points is not
255
-
// guaranteed which isn't a problem here
256
-
//
257
-
// There is a proposal to support this natively (https://github.com/rust-lang/rust/pull/95290)
258
-
// but its in limbo
259
-
unsafe{ std::mem::transmute(s)}
260
-
}
261
-
262
-
/// Restore raw bytes as `OsStr`
263
-
///
264
-
/// # Safety
265
-
///
266
-
/// - `&[u8]` must either by a `&str` or originated with `to_bytes` within the same binary
267
-
/// - Any splits of the original `&[u8]` must be done along UTF-8 boundaries
268
-
unsafefnto_os_str_unchecked(s:&[u8]) -> &OsStr{
269
-
// SAFETY:
270
-
// - Lifetimes are the same
271
-
// - Types are compatible (`OsStr` is effectively a transparent wrapper for `[u8]`)
272
-
// - The primary contract is that the encoding for invalid surrogate code points is not
273
-
// guaranteed which isn't a problem here
274
-
//
275
-
// There is a proposal to support this natively (https://github.com/rust-lang/rust/pull/95290)
0 commit comments