Home
last modified time | relevance | path

Searched refs:byte_string (Results 1 – 6 of 6) sorted by relevance

/linux/rust/macros/
H A Dmodule.rs71 string = Literal::byte_string(string.as_bytes()), in emit_base()
/linux/rust/proc-macro2/
H A Dwrapper.rs892 pub(crate) fn byte_string(bytes: &[u8]) -> Literal { in byte_string() method
894 Literal::Compiler(proc_macro::Literal::byte_string(bytes)) in byte_string()
896 Literal::Fallback(fallback::Literal::byte_string(bytes)) in byte_string()
H A Dlib.rs1237 pub fn byte_string(bytes: &[u8]) -> Literal { in byte_string() method
1238 Literal::_new(imp::Literal::byte_string(bytes)) in byte_string()
H A Dparse.rs348 } else if let Ok(ok) = byte_string(input) { in literal_nocapture()
435 fn byte_string(input: Cursor) -> Result<Cursor, Reject> { in byte_string() function
H A Dfallback.rs1074 pub(crate) fn byte_string(bytes: &[u8]) -> Literal { in byte_string() method
/linux/rust/syn/
H A Dlit.rs277 let mut token = Literal::byte_string(value); in new()