pub struct RerankStartEvent {
pub call_id: String,
pub model: ModelIdentity,
pub document_count: usize,
pub query: Option<String>,
}Expand description
A rerank call started.
Fields§
§call_id: StringCall id.
model: ModelIdentityThe model.
document_count: usizeNumber of documents.
query: Option<String>The query (only when record_inputs).
Trait Implementations§
Source§impl Clone for RerankStartEvent
impl Clone for RerankStartEvent
Source§fn clone(&self) -> RerankStartEvent
fn clone(&self) -> RerankStartEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RerankStartEvent
impl RefUnwindSafe for RerankStartEvent
impl Send for RerankStartEvent
impl Sync for RerankStartEvent
impl Unpin for RerankStartEvent
impl UnsafeUnpin for RerankStartEvent
impl UnwindSafe for RerankStartEvent
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