trait ShouldHalt {
    // Required method
    fn should_halt(&self) -> bool;
}
Expand description

A trait for errors that should halt rather than panic the process.

Required Methods§

source

fn should_halt(&self) -> bool

Reports whether the error should halt rather than panic the process.

Implementations on Foreign Types§

source§

impl ShouldHalt for CatalogError

source§

impl ShouldHalt for DurableCatalogError

source§

impl ShouldHalt for CollectionUpdateError

source§

impl ShouldHalt for DataflowCreationError

source§

impl ShouldHalt for PeekError

source§

impl ShouldHalt for ReadPolicyError

source§

impl ShouldHalt for SubscribeTargetError

source§

impl ShouldHalt for StorageError

source§

impl ShouldHalt for TransformError

source§

impl ShouldHalt for Error

source§

impl ShouldHalt for InstanceMissing

Implementors§