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