Skip to main content

Build

Trait Build 

Source
pub trait Build<T, O> {
    // Required method
    fn build(&self, data: T) -> O;
}

Required Methods§

Source

fn build(&self, data: T) -> O

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T, R, S, B> Build<RankStructure<T, R>, RankSelectStructure<T, R, S>> for B
where R: RankSupport<T>, B: Build<T, SelectStructure<T, S>>, S: SelectSupport<T>,

Source§

impl<T, R, S, B> Build<SelectStructure<T, S>, RankSelectStructure<T, R, S>> for B
where R: RankSupport<T>, B: Build<T, RankStructure<T, R>>, S: SelectSupport<T>,