pub struct CompletionStatusResponse {
pub status: CompletionStatus,
pub step: Option<Step>,
}Expand description
Response to a completion token status request.
Fields§
§status: CompletionStatusCompletion token status.
step: Option<Step>If all of the data associated with the token has been processed through
the pipeline, this is the final step that includes at least one record.
When the pipeline’s total_completed_steps reaches this value, the
token has been completed.
This is None before the data associated with the token has been
processed through the pipeline.
Implementations§
Trait Implementations§
Source§impl Debug for CompletionStatusResponse
impl Debug for CompletionStatusResponse
Source§impl<'de> Deserialize<'de> for CompletionStatusResponse
impl<'de> Deserialize<'de> for CompletionStatusResponse
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 Serialize for CompletionStatusResponse
impl Serialize for CompletionStatusResponse
Auto Trait Implementations§
impl Freeze for CompletionStatusResponse
impl RefUnwindSafe for CompletionStatusResponse
impl Send for CompletionStatusResponse
impl Sync for CompletionStatusResponse
impl Unpin for CompletionStatusResponse
impl UnsafeUnpin for CompletionStatusResponse
impl UnwindSafe for CompletionStatusResponse
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