pub struct EventStreamOp;Expand description
Op marker for event_stream_iter. Per-event class is the
orchestrator’s — SubLinear on a strict-DD matrix.
Trait Implementations§
Source§impl Clone for EventStreamOp
impl Clone for EventStreamOp
Source§fn clone(&self) -> EventStreamOp
fn clone(&self) -> EventStreamOp
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 Complexity for EventStreamOp
impl Complexity for EventStreamOp
Source§const CLASS: ComplexityClass = ComplexityClass::SubLinear
const CLASS: ComplexityClass = ComplexityClass::SubLinear
Worst-case complexity class on a single-query call. For iterative
solvers this is the per-iter cost; the iteration count is bounded by
other configuration (max_iterations, tolerance, ef_construction).
Source§const DETAIL: &'static str = "Per-event class is the auto-tuned SubLinear orchestrator's. The iterator wrapper \
adds O(1) gate probe + optional O(1) budget consume per event; aggregate cost is \
O(events · per_event_class)."
const DETAIL: &'static str = "Per-event class is the auto-tuned SubLinear orchestrator's. The iterator wrapper \ adds O(1) gate probe + optional O(1) budget consume per event; aggregate cost is \ O(events · per_event_class)."
Optional human-readable detail for documentation / MCP tool schemas.
Defaults to the short label of
CLASS. Override when there’s a
non-obvious constant or k-bound.Source§impl Debug for EventStreamOp
impl Debug for EventStreamOp
Source§impl Default for EventStreamOp
impl Default for EventStreamOp
Source§fn default() -> EventStreamOp
fn default() -> EventStreamOp
Returns the “default value” for a type. Read more
impl Copy for EventStreamOp
Auto Trait Implementations§
impl Freeze for EventStreamOp
impl RefUnwindSafe for EventStreamOp
impl Send for EventStreamOp
impl Sync for EventStreamOp
impl Unpin for EventStreamOp
impl UnsafeUnpin for EventStreamOp
impl UnwindSafe for EventStreamOp
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