pub struct ReadBatch {
pub records: Vec<SequencedRecord>,
pub tail: Option<StreamPosition>,
}Fields§
§records: Vec<SequencedRecord>Records that are durably sequenced on the stream, retrieved based on the requested criteria.
This can only be empty in response to a unary read (i.e. not SSE), if the request cannot be satisfied without violating an explicit bound (count, bytes, or until).
tail: Option<StreamPosition>Sequence number that will be assigned to the next record on the stream, and timestamp of the last record. This will only be present when reading recent records.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ReadBatch
impl RefUnwindSafe for ReadBatch
impl Send for ReadBatch
impl Sync for ReadBatch
impl Unpin for ReadBatch
impl UnwindSafe for ReadBatch
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more