Enum sc_service::config::BasePath [−][src]
The base path that is used for everything that needs to be write on disk to run a node.
Variants
Temporary(TempDir)
A temporary directory is used as base path and will be deleted when dropped.
Permanenent(PathBuf)
A path on the disk.
Implementations
impl BasePath
[src][−]
pub fn new_temp_dir() -> Result<BasePath>
[src][−]
Create a BasePath
instance using a temporary directory prefixed with “substrate” and use
it as base path.
Note: the temporary directory will be created automatically and deleted when the BasePath
instance is dropped.
pub fn new<P: AsRef<Path>>(path: P) -> BasePath
[src][−]
Create a BasePath
instance based on an existing path on disk.
Note: this function will not ensure that the directory exist nor create the directory. It will also not delete the directory when the instance is dropped.
pub fn from_project(
qualifier: &str,
organization: &str,
application: &str
) -> BasePath
[src][−]
qualifier: &str,
organization: &str,
application: &str
) -> BasePath
Create a base path from values describing the project.
pub fn path(&self) -> &Path
[src][−]
Retrieve the base path.
pub fn config_dir(&self, chain_id: &str) -> PathBuf
[src][−]
Returns the configuration directory inside this base path.
The path looks like $base_path/chains/$chain_id
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for BasePath
impl Send for BasePath
impl Sync for BasePath
impl Unpin for BasePath
impl UnwindSafe for BasePath
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> CheckedConversion for T
[src][+]
impl<T> Erased for T
[src]
impl<T> From<T> for T
[src][+]
impl<T> Instrument for T
[src][+]
impl<T> Instrument for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src][+]
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
impl<T> MaybeDebug for T where
T: Debug,
[src]
T: Debug,
impl<T> MaybeDebug for T where
T: Debug,
[src]
T: Debug,
impl<T> MaybeRefUnwindSafe for T where
T: RefUnwindSafe,
[src]
T: RefUnwindSafe,
impl<T> Pointable for T
[src][+]
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> SaturatedConversion for T
[src][+]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src][+]
T: UncheckedFrom<S>,
impl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
[src][+]
T: Bounded,
S: TryInto<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src][+]
V: MultiLane<T>,