Home
last modified time | relevance | path

Searched refs:RawFormatter (Results 1 – 2 of 2) sorted by relevance

/linux/rust/kernel/
H A Dstr.rs524 pub struct RawFormatter { struct
531 impl RawFormatter { implementation
587 impl fmt::Write for RawFormatter { implementation
616 pub struct Formatter<'a>(RawFormatter, PhantomData<&'a mut ()>);
627 Self(unsafe { RawFormatter::from_buffer(buf, len) }, PhantomData) in from_buffer()
639 type Target = RawFormatter;
818 let mut f = RawFormatter::new(); in try_from_fmt()
H A Dprint.rs13 str::RawFormatter,
26 let mut w = unsafe { RawFormatter::from_ptrs(buf.cast(), end.cast()) }; in rust_fmt_argument()