pub enum StreamOrdering {
Source,
Deterministic,
}Expand description
Ordering guarantee requested from a streaming source or pipeline.
Variants§
Source
Preserve the deterministic order defined by the source.
Deterministic
Permit reordering while requiring deterministic output for identical inputs.
Trait Implementations§
Source§impl Clone for StreamOrdering
impl Clone for StreamOrdering
Source§fn clone(&self) -> StreamOrdering
fn clone(&self) -> StreamOrdering
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 Debug for StreamOrdering
impl Debug for StreamOrdering
Source§impl Default for StreamOrdering
impl Default for StreamOrdering
Source§fn default() -> StreamOrdering
fn default() -> StreamOrdering
Returns the “default value” for a type. Read more
Source§impl PartialEq for StreamOrdering
impl PartialEq for StreamOrdering
Source§fn eq(&self, other: &StreamOrdering) -> bool
fn eq(&self, other: &StreamOrdering) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StreamOrdering
impl Eq for StreamOrdering
impl StructuralPartialEq for StreamOrdering
Auto Trait Implementations§
impl Freeze for StreamOrdering
impl RefUnwindSafe for StreamOrdering
impl Send for StreamOrdering
impl Sync for StreamOrdering
impl Unpin for StreamOrdering
impl UnsafeUnpin for StreamOrdering
impl UnwindSafe for StreamOrdering
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