Trait bdk_chain::Append

source ·
pub trait Append {
    fn append(&mut self, other: Self);
    fn is_empty(&self) -> bool;
}
Expand description

Trait that makes an object appendable.

Required Methods§

Append another object of the same type onto self.

Returns whether the structure is considered empty.

Implementations on Foreign Types§

Implementors§