differential_dogs3

Trait ValidateExtensionMethod

Source
pub trait ValidateExtensionMethod<G: Scope, R: Monoid + Multiply<Output = R>, P, E> {
    // Required method
    fn validate_using<PE: PrefixExtender<G, R, Prefix = P, Extension = E>>(
        &self,
        extender: &mut PE,
    ) -> Collection<G, (P, E), R>;
}

Required Methods§

Source

fn validate_using<PE: PrefixExtender<G, R, Prefix = P, Extension = E>>( &self, extender: &mut PE, ) -> Collection<G, (P, E), R>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<G: Scope, R: Monoid + Multiply<Output = R>, P, E> ValidateExtensionMethod<G, R, P, E> for Collection<G, (P, E), R>

Source§

fn validate_using<PE: PrefixExtender<G, R, Prefix = P, Extension = E>>( &self, extender: &mut PE, ) -> Collection<G, (P, E), R>

Implementors§