Struct frame_benchmarking_cli::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, Error>
pub fn new_temp_dir() -> Result<BasePath, Error>
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>(path: P) -> BasePathwhere
P: Into<PathBuf>,
pub fn new<P>(path: P) -> BasePathwhere P: Into<PathBuf>,
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 more§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.source§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
.