Trait rustful::handler::Merge [] [src]

pub trait Merge {
    fn merge(&mut self, other: Self);
}

A trait for handlers that can be merged.

Required Methods

Combine this handler with another, overwriting conflicting properties.

Implementations on Foreign Types

impl<T: Merge> Merge for Option<T>
[src]

Implementors