pub struct LlmResponseWrapper {
pub response: LlmResponse,
}Expand description
Response type for LLM completion services.
Fields§
§response: LlmResponseThe LLM response.
Trait Implementations§
Source§impl Clone for LlmResponseWrapper
impl Clone for LlmResponseWrapper
Source§fn clone(&self) -> LlmResponseWrapper
fn clone(&self) -> LlmResponseWrapper
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LlmResponseWrapper
impl RefUnwindSafe for LlmResponseWrapper
impl Send for LlmResponseWrapper
impl Sync for LlmResponseWrapper
impl Unpin for LlmResponseWrapper
impl UnsafeUnpin for LlmResponseWrapper
impl UnwindSafe for LlmResponseWrapper
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more