Trait IndentTracker

Source
pub trait IndentTracker {
    // Required methods
    fn indent<W: Write>(&self, w: &mut W) -> Result;
    fn push(self) -> Self;
}

Required Methods§

Source

fn indent<W: Write>(&self, w: &mut W) -> Result

Source

fn push(self) -> Self

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.

Implementors§