pub struct SessionSearchCheckpoint {
pub generation: String,
pub event_id: String,
pub indexed_through: Option<DateTime<Utc>>,
}Expand description
Durable writer acknowledgement/watermark.
Fields§
§generation: StringAccepted generation.
event_id: StringLast durably accepted event id.
indexed_through: Option<DateTime<Utc>>Indexed-through watermark when available.
Trait Implementations§
Source§impl Clone for SessionSearchCheckpoint
impl Clone for SessionSearchCheckpoint
Source§fn clone(&self) -> SessionSearchCheckpoint
fn clone(&self) -> SessionSearchCheckpoint
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 SessionSearchCheckpoint
impl Debug for SessionSearchCheckpoint
Source§impl<'de> Deserialize<'de> for SessionSearchCheckpoint
impl<'de> Deserialize<'de> for SessionSearchCheckpoint
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
impl Eq for SessionSearchCheckpoint
Source§impl PartialEq for SessionSearchCheckpoint
impl PartialEq for SessionSearchCheckpoint
Source§impl Serialize for SessionSearchCheckpoint
impl Serialize for SessionSearchCheckpoint
impl StructuralPartialEq for SessionSearchCheckpoint
Auto Trait Implementations§
impl Freeze for SessionSearchCheckpoint
impl RefUnwindSafe for SessionSearchCheckpoint
impl Send for SessionSearchCheckpoint
impl Sync for SessionSearchCheckpoint
impl Unpin for SessionSearchCheckpoint
impl UnsafeUnpin for SessionSearchCheckpoint
impl UnwindSafe for SessionSearchCheckpoint
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