pub struct ChapterStreamResult {
pub items_emitted: usize,
pub bytes_read: usize,
pub complete: bool,
}Expand description
Result from streaming chapter event processing.
Fields§
§items_emitted: usizeNumber of items emitted.
bytes_read: usizeTotal bytes read from chapter.
complete: boolWhether streaming is complete.
Trait Implementations§
Source§impl Clone for ChapterStreamResult
impl Clone for ChapterStreamResult
Source§fn clone(&self) -> ChapterStreamResult
fn clone(&self) -> ChapterStreamResult
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 ChapterStreamResult
impl RefUnwindSafe for ChapterStreamResult
impl Send for ChapterStreamResult
impl Sync for ChapterStreamResult
impl Unpin for ChapterStreamResult
impl UnsafeUnpin for ChapterStreamResult
impl UnwindSafe for ChapterStreamResult
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