Trait TildeKindLoop

Source
pub trait TildeKindLoop: Debug {
    // Provided method
    fn format(
        &self,
        tkind: &TildeKind,
        buf: &mut String,
    ) -> Result<(), TildeError> { ... }
}
Expand description

TildeKindLoop is the trait that contains implementation of type for TildeKind::Loop.

Generated by cl-format-macro

Provided Methods§

Source

fn format(&self, tkind: &TildeKind, buf: &mut String) -> Result<(), TildeError>

Implementations on Foreign Types§

Source§

impl<'a> TildeKindLoop for Vec<&dyn TildeAble>

Source§

fn format(&self, tkind: &TildeKind, buf: &mut String) -> Result<(), TildeError>

Implementors§

Source§

impl<'a, 'arg> TildeKindLoop for Args<'a, 'arg>