pub struct KvEventBatch {
pub engine_id: String,
pub ts_ms: Option<u64>,
pub model_id: Option<String>,
pub tokenizer_id: Option<String>,
pub adapter_id: Option<String>,
pub tenant_id: Option<String>,
pub bytes_per_block: Option<u64>,
pub events: Vec<KvEvent>,
}Fields§
§engine_id: String§ts_ms: Option<u64>§model_id: Option<String>§tokenizer_id: Option<String>§adapter_id: Option<String>§tenant_id: Option<String>§bytes_per_block: Option<u64>§events: Vec<KvEvent>Trait Implementations§
Source§impl Clone for KvEventBatch
impl Clone for KvEventBatch
Source§fn clone(&self) -> KvEventBatch
fn clone(&self) -> KvEventBatch
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 moreSource§impl Debug for KvEventBatch
impl Debug for KvEventBatch
Source§impl<'de> Deserialize<'de> for KvEventBatch
impl<'de> Deserialize<'de> for KvEventBatch
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for KvEventBatch
impl PartialEq for KvEventBatch
Source§fn eq(&self, other: &KvEventBatch) -> bool
fn eq(&self, other: &KvEventBatch) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for KvEventBatch
impl Serialize for KvEventBatch
impl StructuralPartialEq for KvEventBatch
Auto Trait Implementations§
impl Freeze for KvEventBatch
impl RefUnwindSafe for KvEventBatch
impl Send for KvEventBatch
impl Sync for KvEventBatch
impl Unpin for KvEventBatch
impl UnsafeUnpin for KvEventBatch
impl UnwindSafe for KvEventBatch
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