pub struct BackfillTaskContext {
pub task_id: String,
pub title: String,
pub existing_events: Vec<String>,
}Fields§
§task_id: String§title: String§existing_events: Vec<String>Text of events already captured for this task (for dedup context).
Trait Implementations§
Source§impl Clone for BackfillTaskContext
impl Clone for BackfillTaskContext
Source§fn clone(&self) -> BackfillTaskContext
fn clone(&self) -> BackfillTaskContext
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 BackfillTaskContext
impl Debug for BackfillTaskContext
Auto Trait Implementations§
impl Freeze for BackfillTaskContext
impl RefUnwindSafe for BackfillTaskContext
impl Send for BackfillTaskContext
impl Sync for BackfillTaskContext
impl Unpin for BackfillTaskContext
impl UnsafeUnpin for BackfillTaskContext
impl UnwindSafe for BackfillTaskContext
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