pub trait SourceTimestamp: Timestamp + Refines<()> + Display {
    // Required methods
    fn from_compat_ts(pid: PartitionId, offset: MzOffset) -> Self;
    fn try_into_compat_ts(&self) -> Option<(PartitionId, MzOffset)>;
    fn encode_row(&self) -> Row;
    fn decode_row(row: &Row) -> Self;
}

Required Methods§

Implementations on Foreign Types§

source§

impl SourceTimestamp for Partitioned<i32, MzOffset>

Implementors§