pub struct CodeIndexTaskCompletion {
pub task_id: String,
pub lease_owner: String,
pub attempt_count: u32,
pub now_ms: u64,
}Expand description
Completion report guarded by task lease and attempt token.
Fields§
§task_id: String§lease_owner: String§attempt_count: u32§now_ms: u64Trait Implementations§
Source§impl Clone for CodeIndexTaskCompletion
impl Clone for CodeIndexTaskCompletion
Source§fn clone(&self) -> CodeIndexTaskCompletion
fn clone(&self) -> CodeIndexTaskCompletion
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 CodeIndexTaskCompletion
impl Debug for CodeIndexTaskCompletion
Source§impl PartialEq for CodeIndexTaskCompletion
impl PartialEq for CodeIndexTaskCompletion
Source§fn eq(&self, other: &CodeIndexTaskCompletion) -> bool
fn eq(&self, other: &CodeIndexTaskCompletion) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CodeIndexTaskCompletion
impl StructuralPartialEq for CodeIndexTaskCompletion
Auto Trait Implementations§
impl Freeze for CodeIndexTaskCompletion
impl RefUnwindSafe for CodeIndexTaskCompletion
impl Send for CodeIndexTaskCompletion
impl Sync for CodeIndexTaskCompletion
impl Unpin for CodeIndexTaskCompletion
impl UnsafeUnpin for CodeIndexTaskCompletion
impl UnwindSafe for CodeIndexTaskCompletion
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