pub struct StreamBootstrapPlan {
pub snapshot: Option<StreamVisibleSnapshot>,
pub updates: Vec<StreamMessageRecord>,
pub next_offset: u64,
pub content_type: String,
pub up_to_date: bool,
pub closed: bool,
}Fields§
§snapshot: Option<StreamVisibleSnapshot>§updates: Vec<StreamMessageRecord>§next_offset: u64§content_type: String§up_to_date: bool§closed: boolTrait Implementations§
Source§impl Clone for StreamBootstrapPlan
impl Clone for StreamBootstrapPlan
Source§fn clone(&self) -> StreamBootstrapPlan
fn clone(&self) -> StreamBootstrapPlan
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 StreamBootstrapPlan
impl Debug for StreamBootstrapPlan
Source§impl PartialEq for StreamBootstrapPlan
impl PartialEq for StreamBootstrapPlan
Source§fn eq(&self, other: &StreamBootstrapPlan) -> bool
fn eq(&self, other: &StreamBootstrapPlan) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for StreamBootstrapPlan
impl StructuralPartialEq for StreamBootstrapPlan
Auto Trait Implementations§
impl Freeze for StreamBootstrapPlan
impl RefUnwindSafe for StreamBootstrapPlan
impl Send for StreamBootstrapPlan
impl Sync for StreamBootstrapPlan
impl Unpin for StreamBootstrapPlan
impl UnsafeUnpin for StreamBootstrapPlan
impl UnwindSafe for StreamBootstrapPlan
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