AsVerify

Trait AsVerify 

Source
pub trait AsVerify {
    // Provided method
    fn as_verify(&self) -> Option<Box<dyn VerifyClientDyn>> { ... }
}
Expand description

Attempt to convert a ProviderClient to a VerifyClient

Provided Methods§

Implementors§

Source§

impl<T> AsVerify for T
where T: VerifyClientDyn + Clone + 'static,