Trait LLMClone

Source
pub trait LLMClone {
    // Required method
    fn clone_box(&self) -> Box<dyn LLM>;
}

Required Methods§

Source

fn clone_box(&self) -> Box<dyn LLM>

Implementors§

Source§

impl<T> LLMClone for T
where T: 'static + LLM + Clone,