Type Alias sp_version::ApisVec
source · pub type ApisVec = Cow<'static, [(ApiId, u32)]>;Expand description
A vector of pairs of ApiId and a u32 for version.
Aliased Type§
enum ApisVec {
Borrowed(&'static [([u8; 8], u32)]),
Owned(Vec<([u8; 8], u32)>),
}