Skip to main content

nominal_api/conjure/errors/scout/catalog/
mod.rs

1#[doc(inline)]
2pub use self::cannot_add_file_to_derived_dataset::CannotAddFileToDerivedDataset;
3#[doc(inline)]
4pub use self::cannot_add_to_legacy_dataset::CannotAddToLegacyDataset;
5#[doc(inline)]
6pub use self::cannot_create_nested_derived_dataset::CannotCreateNestedDerivedDataset;
7#[doc(inline)]
8pub use self::cannot_create_unsupported_derived_dataset::CannotCreateUnsupportedDerivedDataset;
9#[doc(inline)]
10pub use self::cannot_update_non_derived_dataset::CannotUpdateNonDerivedDataset;
11#[doc(inline)]
12pub use self::channel_not_found::ChannelNotFound;
13#[doc(inline)]
14pub use self::conflict_on_dataset_creation::ConflictOnDatasetCreation;
15#[doc(inline)]
16pub use self::conflict_on_dataset_file_create_or_update::ConflictOnDatasetFileCreateOrUpdate;
17#[doc(inline)]
18pub use self::conflict_on_series_creation::ConflictOnSeriesCreation;
19#[doc(inline)]
20pub use self::dataset_exists_in_other_workspace::DatasetExistsInOtherWorkspace;
21#[doc(inline)]
22pub use self::dataset_file_not_found::DatasetFileNotFound;
23#[doc(inline)]
24pub use self::dataset_not_found::DatasetNotFound;
25#[doc(inline)]
26pub use self::datasets_not_found::DatasetsNotFound;
27#[doc(inline)]
28pub use self::derived_datasets_not_enabled::DerivedDatasetsNotEnabled;
29#[doc(inline)]
30pub use self::granularity_mismatch::GranularityMismatch;
31#[doc(inline)]
32pub use self::iceberg_not_supported::IcebergNotSupported;
33#[doc(inline)]
34pub use self::invalid_state_for_adding_additional_file::InvalidStateForAddingAdditionalFile;
35#[doc(inline)]
36pub use self::run_not_found::RunNotFound;
37#[doc(inline)]
38pub use self::video_file_not_found::VideoFileNotFound;
39pub mod cannot_add_file_to_derived_dataset;
40pub mod cannot_add_to_legacy_dataset;
41pub mod cannot_create_nested_derived_dataset;
42pub mod cannot_create_unsupported_derived_dataset;
43pub mod cannot_update_non_derived_dataset;
44pub mod channel_not_found;
45pub mod conflict_on_dataset_creation;
46pub mod conflict_on_dataset_file_create_or_update;
47pub mod conflict_on_series_creation;
48pub mod dataset_exists_in_other_workspace;
49pub mod dataset_file_not_found;
50pub mod dataset_not_found;
51pub mod datasets_not_found;
52pub mod derived_datasets_not_enabled;
53pub mod granularity_mismatch;
54pub mod iceberg_not_supported;
55pub mod invalid_state_for_adding_additional_file;
56pub mod run_not_found;
57pub mod video_file_not_found;