Struct mz_dataflow::DummyBoundary
source · [−]pub struct DummyBoundary;
Expand description
A boundary implementation that panics on use.
Trait Implementations
sourceimpl ComputeReplay for DummyBoundary
impl ComputeReplay for DummyBoundary
sourcefn replay<G>(
&mut self,
_scope: &mut G,
_name: &str,
_request: SourceInstanceRequest<u64>
) -> (Collection<G, Row, i64>, Collection<G, DataflowError, i64>, Rc<dyn Any + 'static>) where
G: Scope<Timestamp = u64>,
fn replay<G>(
&mut self,
_scope: &mut G,
_name: &str,
_request: SourceInstanceRequest<u64>
) -> (Collection<G, Row, i64>, Collection<G, DataflowError, i64>, Rc<dyn Any + 'static>) where
G: Scope<Timestamp = u64>,
Replays the source bound to id
. Read more
sourceimpl StorageCapture for DummyBoundary
impl StorageCapture for DummyBoundary
sourcefn capture<G>(
&mut self,
_id: GlobalId,
_ok: Collection<G, Row, i64>,
_err: Collection<G, DataflowError, i64>,
_token: Rc<dyn Any + 'static>,
_name: &str,
_dataflow_id: Uuid
) where
G: Scope<Timestamp = u64>,
fn capture<G>(
&mut self,
_id: GlobalId,
_ok: Collection<G, Row, i64>,
_err: Collection<G, DataflowError, i64>,
_token: Rc<dyn Any + 'static>,
_name: &str,
_dataflow_id: Uuid
) where
G: Scope<Timestamp = u64>,
Captures the source and binds to id
.
Auto Trait Implementations
impl RefUnwindSafe for DummyBoundary
impl Send for DummyBoundary
impl Sync for DummyBoundary
impl Unpin for DummyBoundary
impl UnwindSafe for DummyBoundary
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more