pub struct RerankEndEvent {
pub call_id: String,
pub ranked_count: usize,
pub duration: Duration,
}Expand description
A rerank call finished.
Fields§
§call_id: StringCall id.
ranked_count: usizeNumber of ranked documents.
duration: DurationWall time.
Trait Implementations§
Source§impl Clone for RerankEndEvent
impl Clone for RerankEndEvent
Source§fn clone(&self) -> RerankEndEvent
fn clone(&self) -> RerankEndEvent
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 RerankEndEvent
impl RefUnwindSafe for RerankEndEvent
impl Send for RerankEndEvent
impl Sync for RerankEndEvent
impl Unpin for RerankEndEvent
impl UnsafeUnpin for RerankEndEvent
impl UnwindSafe for RerankEndEvent
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