pub struct EmbedStartEvent {
pub call_id: String,
pub model: ModelIdentity,
pub value_count: usize,
pub values: Option<Vec<String>>,
}Expand description
An embedding call started.
Fields§
§call_id: StringCall id.
model: ModelIdentityThe model.
value_count: usizeNumber of values.
values: Option<Vec<String>>The values (only when record_inputs).
Trait Implementations§
Source§impl Clone for EmbedStartEvent
impl Clone for EmbedStartEvent
Source§fn clone(&self) -> EmbedStartEvent
fn clone(&self) -> EmbedStartEvent
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 EmbedStartEvent
impl RefUnwindSafe for EmbedStartEvent
impl Send for EmbedStartEvent
impl Sync for EmbedStartEvent
impl Unpin for EmbedStartEvent
impl UnsafeUnpin for EmbedStartEvent
impl UnwindSafe for EmbedStartEvent
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