Modify

Trait Modify 

Source
pub trait Modify {
    // Required method
    fn modify(&mut self);
}
Expand description

Modifies the struct/enum based on the provided #[modify] attributes. Automatically implemented when deriving Validify. See the repository for a full list of possible modifiers.

Required Methods§

Source

fn modify(&mut self)

Apply the provided modifiers to self

Implementors§