pub trait Arrange<G, C>{
// Required method
fn arrange_named<Tr>(&self, name: &str) -> Arranged<G, TraceAgent<Tr>>
where Tr: Trace<Time = G::Timestamp> + 'static,
Tr::Batch: Batch,
Tr::Batcher: Batcher<Input = C>;
// Provided method
fn arrange<Tr>(&self) -> Arranged<G, TraceAgent<Tr>>
where Tr: Trace<Time = G::Timestamp> + 'static,
Tr::Batch: Batch,
Tr::Batcher: Batcher<Input = C> { ... }
}
Expand description
A type that can be arranged as if a collection of updates.
Required Methods§
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.