Trait ketos::value::AnyValue [] [src]

pub trait AnyValue: Any {
    fn type_id(&self) -> TypeId;
}

A helper trait that is necessary as long as Any::get_type_id is unstable.

Required Methods

Returns the TypeId value for the type.

Implementors