Home
last modified time | relevance | path

Searched defs:ByteStr (Results 1 – 1 of 1) sorted by relevance

/external/rust/crates/http/src/
Dbyte_str.rs6 pub(crate) struct ByteStr { struct
11 impl ByteStr { implementation
21 pub const fn from_static(val: &'static str) -> ByteStr { in from_static()
35 pub unsafe fn from_utf8_unchecked(bytes: Bytes) -> ByteStr { in from_utf8_unchecked()
50 impl ops::Deref for ByteStr { implementation
61 impl From<String> for ByteStr { implementation
63 fn from(src: String) -> ByteStr { in from()
71 impl<'a> From<&'a str> for ByteStr { implementation
73 fn from(src: &'a str) -> ByteStr { in from()