pub enum Plan {
Bytes(Arc<[u8]>),
SlabHandle {
slab_id: u32,
offset: u32,
len: u32,
},
}Expand description
The execution plan payload. Kept as an opaque blob at the bridge layer — the bridge doesn’t interpret plans, it just moves them.
Variants§
Bytes(Arc<[u8]>)
Raw serialized plan bytes (zero-copy via Arc).
SlabHandle
Slab handle — the actual plan lives in a shared slab allocator and the Data Plane looks it up by index.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Plan
impl RefUnwindSafe for Plan
impl Send for Plan
impl Sync for Plan
impl Unpin for Plan
impl UnsafeUnpin for Plan
impl UnwindSafe for Plan
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