pub trait GetType {
    type Output: Clone + Copy + PartialEq + Eq + Debug;

    // Required method
    fn get_type(&self) -> Self::Output;
}
Expand description

Gets the type of value that is stored.

Required Associated Types§

Required Methods§

source

fn get_type(&self) -> Self::Output

Gets the type of value that is stored.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'gc, C: CustomTypes<S>, S: System<C>> GetType for Value<'gc, C, S>

§

type Output = Type<C, S>