Type Alias sp_genesis_builder::PresetId

source ·
pub type PresetId = RuntimeString;
Expand description

The type representing preset ID.

Aliased Type§

enum PresetId {
    Borrowed(&'static str),
    Owned(String),
}

Variants§

§

Borrowed(&'static str)

The borrowed mode that wraps a &'static str.

§

Owned(String)

The owned mode that wraps a String.