pub trait IntoAtom<'js> {
    // Required method
    fn into_atom(self, ctx: &Ctx<'js>) -> Result<Atom<'js>>;
}Expand description
Trait for converting values to atoms.
pub trait IntoAtom<'js> {
    // Required method
    fn into_atom(self, ctx: &Ctx<'js>) -> Result<Atom<'js>>;
}Trait for converting values to atoms.