Trait GetType

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

Implementors§

Source§

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

Source§

type Output = Type<C, S>