pub(crate) trait EscapeContainer {
// Required methods
fn new() -> Self;
fn is_empty(&self) -> bool;
fn push(&mut self, v: Unescape);
fn push_str(&mut self, s: &str);
}Required Methods§
fn new() -> Self
fn is_empty(&self) -> bool
fn push(&mut self, v: Unescape)
fn push_str(&mut self, s: &str)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.