pub unsafe trait LookConstant {
    type Item;

    fn convert_and_check_items(reference: Value) -> Vec<Self::Item>;
    fn look_code(&self) -> Look;
}

Required Associated Types

Required Methods

Implementors