Skip to main content

Tuple

Type Alias Tuple 

Source
pub type Tuple = Vec<RcStackValue>;
Expand description

Multiple RcStackValues.

Aliased Type§

pub struct Tuple { /* private fields */ }

Trait Implementations§

Source§

impl StackValue for Tuple

Source§

impl StaticStackValue for Tuple

Source§

type DynRef<'a> = &'a [SafeRc<dyn StackValue>]

Source§

fn known_ty() -> StackValueType

Source§

fn from_dyn(value: Rc<dyn StackValue>) -> VmResult<Rc<Self>>

Source§

fn from_dyn_ref(value: &dyn StackValue) -> VmResult<Self::DynRef<'_>>