pub trait CustomizableField<'a> {
    // Required method
    fn with_custom_data(
        self,
        custom_data: &HashMap<&'a String, &'a Value>
    ) -> Self;
}

Required Methods§

source

fn with_custom_data(self, custom_data: &HashMap<&'a String, &'a Value>) -> Self

Implementors§

source§

impl<'a> CustomizableField<'a> for Event<'a>