pub trait OptionMaskable: Maskable {
    // Required method
    fn apply_mask(&mut self, src: Self, mask: &Self::Mask) -> bool;
}

Required Methods§

source

fn apply_mask(&mut self, src: Self, mask: &Self::Mask) -> bool

Implementation of the application process of a mask.

Object Safety§

This trait is not object safe.

Implementors§