pub struct ZerobusSinkDeps {
pub catalog: Arc<dyn TableCatalog>,
pub factory: Arc<dyn TransportFactory>,
pub coverage: Arc<dyn CoverageStore>,
}Expand description
The dependencies a ZerobusSink is built from.
Holds Arc<dyn …> trait objects that carry no Debug, so Debug is a
deliberate placeholder rather than derived.
Fields§
§catalog: Arc<dyn TableCatalog>Table provisioning / credential vending (the UC-backed catalog).
factory: Arc<dyn TransportFactory>Opens Zerobus streams (the real SDK adapter, or a fake in tests).
coverage: Arc<dyn CoverageStore>Per-sink durable write coverage.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ZerobusSinkDeps
impl !RefUnwindSafe for ZerobusSinkDeps
impl Send for ZerobusSinkDeps
impl Sync for ZerobusSinkDeps
impl Unpin for ZerobusSinkDeps
impl !UnwindSafe for ZerobusSinkDeps
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Applies the layer to a service and wraps it in [
Layered].