Struct vapcore_spec::SpecParams[][src]

pub struct SpecParams<'a> {
    pub cache_dir: &'a Path,
    pub optimization_setting: Option<OptimizeFor>,
}

Runtime parameters for the spec that are related to how the software should run the chain, rather than integral properties of the chain itself.

Fields

cache_dir: &'a Path

The path to the folder used to cache nodes. This is typically /tmp/ on Unix-like systems

optimization_setting: Option<OptimizeFor>

Whether to run slower at the expense of better memory usage, or run faster while using more memory. This may get more fine-grained in the future but for now is simply a binary option.

Implementations

impl<'a> SpecParams<'a>[src]

pub fn from_path(path: &'a Path) -> Self[src]

Create from a cache path, with null values for the other fields

pub fn new(path: &'a Path, optimization: OptimizeFor) -> Self[src]

Create from a cache path and an optimization setting

Trait Implementations

impl<'a, T: AsRef<Path>> From<&'a T> for SpecParams<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for SpecParams<'a>

impl<'a> Send for SpecParams<'a>

impl<'a> Sync for SpecParams<'a>

impl<'a> Unpin for SpecParams<'a>

impl<'a> UnwindSafe for SpecParams<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,