pub struct CompletedWatermark {
pub completed_at: String,
pub ingested_at: String,
pub metadata: Map<String, Value>,
pub processed_at: String,
}Expand description
A watermark that has been fully processed by the pipeline.
JSON schema
{
"description": "A watermark that has been fully processed by the pipeline.",
"type": "object",
"required": [
"completed_at",
"ingested_at",
"metadata",
"processed_at"
],
"properties": {
"completed_at": {
"description": "Timestamp when all outputs produced from this input have been pushed to all output endpoints.",
"type": "string"
},
"ingested_at": {
"description": "Timestamp when the data was ingested from the wire.",
"type": "string"
},
"metadata": {
"description": "Metadata that describes the position in the input stream (e.g., Kafka partition/offset pairs).",
"type": "object"
},
"processed_at": {
"description": "Timestamp when the data was processed by the circuit.",
"type": "string"
}
}
}Fields§
§completed_at: StringTimestamp when all outputs produced from this input have been pushed to all output endpoints.
ingested_at: StringTimestamp when the data was ingested from the wire.
metadata: Map<String, Value>Metadata that describes the position in the input stream (e.g., Kafka partition/offset pairs).
processed_at: StringTimestamp when the data was processed by the circuit.
Implementations§
Source§impl CompletedWatermark
impl CompletedWatermark
pub fn builder() -> CompletedWatermark
Trait Implementations§
Source§impl Clone for CompletedWatermark
impl Clone for CompletedWatermark
Source§fn clone(&self) -> CompletedWatermark
fn clone(&self) -> CompletedWatermark
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 CompletedWatermark
impl Debug for CompletedWatermark
Source§impl<'de> Deserialize<'de> for CompletedWatermark
impl<'de> Deserialize<'de> for CompletedWatermark
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 From<&CompletedWatermark> for CompletedWatermark
impl From<&CompletedWatermark> for CompletedWatermark
Source§fn from(value: &CompletedWatermark) -> Self
fn from(value: &CompletedWatermark) -> Self
Converts to this type from the input type.
Source§impl From<CompletedWatermark> for CompletedWatermark
impl From<CompletedWatermark> for CompletedWatermark
Source§fn from(value: CompletedWatermark) -> Self
fn from(value: CompletedWatermark) -> Self
Converts to this type from the input type.
Source§impl Serialize for CompletedWatermark
impl Serialize for CompletedWatermark
Source§impl TryFrom<CompletedWatermark> for CompletedWatermark
impl TryFrom<CompletedWatermark> for CompletedWatermark
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: CompletedWatermark) -> Result<Self, ConversionError>
fn try_from(value: CompletedWatermark) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for CompletedWatermark
impl RefUnwindSafe for CompletedWatermark
impl Send for CompletedWatermark
impl Sync for CompletedWatermark
impl Unpin for CompletedWatermark
impl UnwindSafe for CompletedWatermark
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