MCPcopy Index your code
hub / github.com/RustPython/RustPython / Wtf8Concat

Interface Wtf8Concat

crates/wtf8/src/concat.rs:18–20  ·  view source on GitHub ↗

Trait for types that can be appended to a [`Wtf8Buf`], preserving surrogates.

Source from the content-addressed store, hash-verified

16
17/// Trait for types that can be appended to a [`Wtf8Buf`], preserving surrogates.
18pub trait Wtf8Concat {
19 fn fmt_wtf8(&self, buf: &mut Wtf8Buf);
20}
21
22impl Wtf8Concat for Wtf8 {
23 #[inline]

Callers

nothing calls this directly

Implementers 2

str.rscrates/vm/src/builtins/str.rs
concat.rscrates/wtf8/src/concat.rs

Calls

no outgoing calls

Tested by

no test coverage detected