Trait langchain_rust::language_models::llm::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,