diff options
author | Akshay <[email protected]> | 2020-04-12 07:41:02 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2020-04-12 07:41:02 +0100 |
commit | f1f564dfcd328a1b36e6fefb37e023afebc9d68f (patch) | |
tree | eed4d74e5334ddf76c9d604f67d3ee9c7b8214b6 /fondant_deps | |
parent | 79f1ea075d0d3ad3514da7120faa1c3c5fd17bfc (diff) |
all loading paths at runtime
Diffstat (limited to 'fondant_deps')
-rw-r--r-- | fondant_deps/src/lib.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/fondant_deps/src/lib.rs b/fondant_deps/src/lib.rs index 9559b11..82626b7 100644 --- a/fondant_deps/src/lib.rs +++ b/fondant_deps/src/lib.rs | |||
@@ -21,7 +21,7 @@ pub mod fondant_exports { | |||
21 | } | 21 | } |
22 | 22 | ||
23 | use serde::{de::DeserializeOwned, Serialize}; | 23 | use serde::{de::DeserializeOwned, Serialize}; |
24 | use std::path::PathBuf; | 24 | use std::path::{Path, PathBuf}; |
25 | 25 | ||
26 | #[derive(Debug)] | 26 | #[derive(Debug)] |
27 | /// Errors that `load` and `store` can result in | 27 | /// Errors that `load` and `store` can result in |
@@ -44,9 +44,8 @@ pub enum FondantError { | |||
44 | 44 | ||
45 | /// Derive this trait on a struct to mark it as a 'configuration' struct. | 45 | /// Derive this trait on a struct to mark it as a 'configuration' struct. |
46 | pub trait Configure: Serialize + DeserializeOwned + Default { | 46 | pub trait Configure: Serialize + DeserializeOwned + Default { |
47 | fn load_file(config_file: &PathBuf) -> Result<Self, FondantError>; | 47 | fn load_file<P: AsRef<Path>>(config_file: P) -> Result<Self, FondantError>; |
48 | fn load() -> Result<Self, FondantError>; | 48 | fn load() -> Result<Self, FondantError>; |
49 | fn store(&self) -> Result<(), FondantError>; | 49 | fn store(&self) -> Result<(), FondantError>; |
50 | fn store_file(&self, config_file: &PathBuf) -> Result<(), FondantError>; | 50 | fn store_file<P: AsRef<Path>>(&self, config_file: P) -> Result<(), FondantError>; |
51 | |||
52 | } | 51 | } |