Struct sc_service::config::BasePath
source · pub struct BasePath { /* private fields */ }
Expand description
The base path that is used for everything that needs to be written on disk to run a node.
Implementations§
source§impl BasePath
impl BasePath
sourcepub fn new_temp_dir() -> Result<BasePath>
pub fn new_temp_dir() -> Result<BasePath>
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 program exits. Every call to this function will return the same path for the lifetime of the program.
sourcepub fn new<P: Into<PathBuf>>(path: P) -> BasePath
pub fn new<P: Into<PathBuf>>(path: P) -> BasePath
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.
sourcepub fn from_project(
qualifier: &str,
organization: &str,
application: &str
) -> BasePath
pub fn from_project( qualifier: &str, organization: &str, application: &str ) -> BasePath
Create a base path from values describing the project.
sourcepub fn config_dir(&self, chain_id: &str) -> PathBuf
pub fn config_dir(&self, chain_id: &str) -> PathBuf
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§
source§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T, Outer> IsWrappedBy<Outer> for Twhere
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T, Outer> IsWrappedBy<Outer> for Twhere Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere Self: UniqueSaturatedFrom<T>,
source§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere Self: UniqueSaturatedInto<T>,
T
. Read moresource§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
unchecked_from
.source§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere T: Bounded, S: TryInto<T>,
source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T
.