Struct runestick::TupleStruct[][src]

pub struct TupleStruct { /* fields omitted */ }

A tuple with a well-defined type.

Implementations

impl TupleStruct[src]

pub fn rtti(&self) -> &Arc<Rtti>[src]

Access runtime type information.

pub fn data(&self) -> &Tuple[src]

Access underlying data.

pub fn data_mut(&mut self) -> &mut Tuple[src]

Access underlying data mutably.

pub fn type_info(&self) -> TypeInfo[src]

Get type info for the typed tuple.

pub fn get(&self, index: usize) -> Option<&Value>[src]

Get the value at the given index in the tuple.

pub fn get_mut(&mut self, index: usize) -> Option<&mut Value>[src]

Get the mutable value at the given index in the tuple.

Trait Implementations

impl Debug for TupleStruct[src]

impl From<TupleStruct> for Value[src]

impl ToValue for TupleStruct[src]

Auto Trait Implementations

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, 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.