pub trait AppendAll {
// Required method
fn append(&self, _: &mut IterAppend<'_>);
}
Expand description
Helper trait to append many arguments to a message.
Required Methods§
Sourcefn append(&self, _: &mut IterAppend<'_>)
fn append(&self, _: &mut IterAppend<'_>)
Performs the append operation by borrowing self.