pub struct PullChangesRequest {
pub stream_id: StreamId,
pub from_seq_no: SeqNo,
pub max_changes: u32,
}Expand description
Pull request for change stream deltas.
Fields§
§stream_id: StreamIdStream identity chosen during process handshake.
from_seq_no: SeqNoFirst sequence number the caller does not yet have.
max_changes: u32Upper bound on number of changes to return.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PullChangesRequest
impl RefUnwindSafe for PullChangesRequest
impl Send for PullChangesRequest
impl Sync for PullChangesRequest
impl Unpin for PullChangesRequest
impl UnsafeUnpin for PullChangesRequest
impl UnwindSafe for PullChangesRequest
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