pub struct DurableHostEventPage {
pub records: Vec<DurableHostEventRecord>,
pub next_position: Option<u64>,
pub has_more: bool,
}Expand description
One bounded, eligibility-filtered durable host-event page.
Fields§
§records: Vec<DurableHostEventRecord>Eligible records in durable order.
next_position: Option<u64>Last eligible backend position, or the requested start position when the page is empty.
has_more: boolWhether another eligible record exists after next_position.
Trait Implementations§
Source§impl Clone for DurableHostEventPage
impl Clone for DurableHostEventPage
Source§fn clone(&self) -> DurableHostEventPage
fn clone(&self) -> DurableHostEventPage
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 DurableHostEventPage
impl Debug for DurableHostEventPage
impl Eq for DurableHostEventPage
Source§impl PartialEq for DurableHostEventPage
impl PartialEq for DurableHostEventPage
impl StructuralPartialEq for DurableHostEventPage
Auto Trait Implementations§
impl Freeze for DurableHostEventPage
impl RefUnwindSafe for DurableHostEventPage
impl Send for DurableHostEventPage
impl Sync for DurableHostEventPage
impl Unpin for DurableHostEventPage
impl UnsafeUnpin for DurableHostEventPage
impl UnwindSafe for DurableHostEventPage
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