pub enum ReadSessionOutput {
Heartbeat(StreamPosition),
Batch(ReadBatch),
}Variants§
Heartbeat(StreamPosition)
Batch(ReadBatch)
Trait Implementations§
Source§impl Clone for ReadSessionOutput
impl Clone for ReadSessionOutput
Source§fn clone(&self) -> ReadSessionOutput
fn clone(&self) -> ReadSessionOutput
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 moreAuto Trait Implementations§
impl Freeze for ReadSessionOutput
impl RefUnwindSafe for ReadSessionOutput
impl Send for ReadSessionOutput
impl Sync for ReadSessionOutput
impl Unpin for ReadSessionOutput
impl UnwindSafe for ReadSessionOutput
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