pub trait FromAtom<'js>: Sized { // Required method fn from_atom(atom: Atom<'js>) -> Result<Self, Error>; }
Trait for converting values from atoms.