pub enum DataHubError {
FailToSetupLocalDataSrcs {
errors: Vec<(Arc<str>, Err)>,
},
NoDataSrcToCreateDataConn {
name: Arc<str>,
data_conn_type: &'static str,
},
}Expand description
An enum type representing the reasons for errors that can occur within DataHub operations.
Variants§
FailToSetupLocalDataSrcs
Indicates a failure during the setup process of one or more session-local data sources. Contains a vector of data source names and their corresponding errors.
NoDataSrcToCreateDataConn
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DataHubError
impl !RefUnwindSafe for DataHubError
impl Send for DataHubError
impl Sync for DataHubError
impl Unpin for DataHubError
impl UnwindSafe for DataHubError
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