pub struct ChunkRead {
pub bytes: Vec<u8>,
pub next_offset: u64,
pub complete: bool,
pub object_identity: String,
}Expand description
One bounded read from a service, HTTP range endpoint, object store, or CDN.
Fields§
§bytes: Vec<u8>§next_offset: u64§complete: bool§object_identity: StringTrait Implementations§
impl Eq for ChunkRead
impl StructuralPartialEq for ChunkRead
Auto Trait Implementations§
impl Freeze for ChunkRead
impl RefUnwindSafe for ChunkRead
impl Send for ChunkRead
impl Sync for ChunkRead
impl Unpin for ChunkRead
impl UnsafeUnpin for ChunkRead
impl UnwindSafe for ChunkRead
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