pub trait Method: Debug {
    // Required method
    fn encrypt(&self, uw: Rc<str>, vw: Rc<str>) -> Result<String>;
}
Expand description

Defines method encryption trait.

Required Methods§

source

fn encrypt(&self, uw: Rc<str>, vw: Rc<str>) -> Result<String>

Implementors§