pub enum GroupReadStreamBody {
Materialized(Vec<u8>),
Planned {
stream_id: BucketStreamId,
plan: StreamReadPlan,
cold_store: Option<ColdStoreHandle>,
cold_index_cache: Option<Arc<ColdIndexPageCache<ColdStoreColdIndexPageStore>>>,
},
}Variants§
Materialized(Vec<u8>)
Planned
Fields
§
stream_id: BucketStreamId§
plan: StreamReadPlan§
cold_store: Option<ColdStoreHandle>§
cold_index_cache: Option<Arc<ColdIndexPageCache<ColdStoreColdIndexPageStore>>>Auto Trait Implementations§
impl !RefUnwindSafe for GroupReadStreamBody
impl !UnwindSafe for GroupReadStreamBody
impl Freeze for GroupReadStreamBody
impl Send for GroupReadStreamBody
impl Sync for GroupReadStreamBody
impl Unpin for GroupReadStreamBody
impl UnsafeUnpin for GroupReadStreamBody
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