pub struct BatchOperation {
pub batch_id: String,
pub operations: Vec<IndexUpdate>,
pub priority: u8,
pub created_at: DateTime<Utc>,
pub estimated_processing_time_ms: u64,
pub metadata: HashMap<String, Value>,
}Expand description
Batch operation container
Fields§
§batch_id: StringBatch ID
operations: Vec<IndexUpdate>Operations in this batch
priority: u8Batch priority (derived from operations)
created_at: DateTime<Utc>Batch creation timestamp
estimated_processing_time_ms: u64Expected processing time estimate
metadata: HashMap<String, Value>Batch metadata
Trait Implementations§
Source§impl Clone for BatchOperation
impl Clone for BatchOperation
Source§fn clone(&self) -> BatchOperation
fn clone(&self) -> BatchOperation
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 moreSource§impl Debug for BatchOperation
impl Debug for BatchOperation
Source§impl<'de> Deserialize<'de> for BatchOperation
impl<'de> Deserialize<'de> for BatchOperation
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
Auto Trait Implementations§
impl Freeze for BatchOperation
impl RefUnwindSafe for BatchOperation
impl Send for BatchOperation
impl Sync for BatchOperation
impl Unpin for BatchOperation
impl UnwindSafe for BatchOperation
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