pub struct CleanFailure {
pub id: DataflowIdAndName,
pub error: String,
}Expand description
A dataflow that dora clean failed to remove from the persisted
store. Reported alongside the successful list so the CLI can show
the user what didn’t get cleaned and exit non-zero.
Fields§
§id: DataflowIdAndName§error: StringHuman-readable error from the persisted store (e.g. an
underlying redb / I/O failure). The in-memory entry is
preserved so a later dora clean can retry.
Trait Implementations§
Source§impl Clone for CleanFailure
impl Clone for CleanFailure
Source§fn clone(&self) -> CleanFailure
fn clone(&self) -> CleanFailure
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 CleanFailure
impl Debug for CleanFailure
Source§impl<'de> Deserialize<'de> for CleanFailure
impl<'de> Deserialize<'de> for CleanFailure
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CleanFailure
impl RefUnwindSafe for CleanFailure
impl Send for CleanFailure
impl Sync for CleanFailure
impl Unpin for CleanFailure
impl UnsafeUnpin for CleanFailure
impl UnwindSafe for CleanFailure
Blanket Implementations§
impl<T> Allocation for T
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