pub enum AttachStorageError {
OverwriteSinkRejected {
sink_index: usize,
},
}Expand description
Error returned by ReactiveLog::attach_storage (next batch
2026-05-21 — D269 part-2 parity with TS attachStorage throw).
Variants§
OverwriteSinkRejected
A sink declared AppendLogMode::Overwrite. Delta-shipping into
an overwrite sink silently truncates the log to the last batch.
Trait Implementations§
Source§impl Debug for AttachStorageError
impl Debug for AttachStorageError
Source§impl Display for AttachStorageError
impl Display for AttachStorageError
Source§impl Error for AttachStorageError
impl Error for AttachStorageError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for AttachStorageError
impl RefUnwindSafe for AttachStorageError
impl Send for AttachStorageError
impl Sync for AttachStorageError
impl Unpin for AttachStorageError
impl UnsafeUnpin for AttachStorageError
impl UnwindSafe for AttachStorageError
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