LogAppend

Trait LogAppend 

Source
pub trait LogAppend {
    // Required method
    fn append(&mut self, other: &mut Self);
}
Expand description

Trait for types that can append log entries from another instance of themselves.

Required Methods§

Source

fn append(&mut self, other: &mut Self)

Appends the log entries from other into 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§