pub trait LookConstant {
    type Item;

    // Required methods
    fn convert_and_check_item(reference: JsValue) -> Self::Item;
    fn look_code() -> Look;
}

Required Associated Types§

Required Methods§

source

fn convert_and_check_item(reference: JsValue) -> Self::Item

source

fn look_code() -> Look

Object Safety§

This trait is not object safe.

Implementors§