[][src]Trait vanity_gpg::Hook

pub trait Hook: Sync + Send {
    fn process(&self, result: &KeyGenerationResult) -> bool;
}

Hook trait

Required methods

fn process(&self, result: &KeyGenerationResult) -> bool

Loading content...

Implementors

impl<F> Hook for F where
    F: Fn(&KeyGenerationResult) -> bool + Sync + Send + Clone
[src]

Implement Hook trait for Fn(&KeyGenerationResult) -> bool

Loading content...