pub enum StreamPartialState {
Clean,
RollbackRequired,
Dirty,
}Expand description
Visibility and cleanup requirement after incomplete transfer.
Variants§
Clean
No sink write was attempted.
RollbackRequired
A transactional write was attempted and must be rolled back.
Dirty
A direct sink write may already have produced an external effect.
Trait Implementations§
Source§impl Clone for StreamPartialState
impl Clone for StreamPartialState
Source§fn clone(&self) -> StreamPartialState
fn clone(&self) -> StreamPartialState
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 moreimpl Copy for StreamPartialState
Source§impl Debug for StreamPartialState
impl Debug for StreamPartialState
impl Eq for StreamPartialState
Source§impl Hash for StreamPartialState
impl Hash for StreamPartialState
Source§impl Ord for StreamPartialState
impl Ord for StreamPartialState
Source§fn cmp(&self, other: &StreamPartialState) -> Ordering
fn cmp(&self, other: &StreamPartialState) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StreamPartialState
impl PartialEq for StreamPartialState
Source§impl PartialOrd for StreamPartialState
impl PartialOrd for StreamPartialState
impl StructuralPartialEq for StreamPartialState
Auto Trait Implementations§
impl Freeze for StreamPartialState
impl RefUnwindSafe for StreamPartialState
impl Send for StreamPartialState
impl Sync for StreamPartialState
impl Unpin for StreamPartialState
impl UnsafeUnpin for StreamPartialState
impl UnwindSafe for StreamPartialState
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