Trait gui::Mergeable

source ·
pub trait Mergeable {
    // Required method
    fn merge_with(self, other: Self) -> Self;
}
Expand description

A trait for merging two values.

Required Methods§

source

fn merge_with(self, other: Self) -> Self

Merge other into self and return the result.

Object Safety§

This trait is not object safe.

Implementors§