pub struct SinkingContext {
pub name: String,
pub granularity: Option<Time>,
}
Expand description
A struct encapsulating any state required to create sinks.
Fields§
§name: String
The name of the dataflow feeding this sink.
granularity: Option<Time>
Granularity at which to send results. None indicates no delay.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SinkingContext
impl RefUnwindSafe for SinkingContext
impl Send for SinkingContext
impl Sync for SinkingContext
impl Unpin for SinkingContext
impl UnwindSafe for SinkingContext
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