Outside of mtots_core, you can’t just impl From<..> for mtots_core::Error
This macro is for conveniently converting an error of any type that
already implements std::error::Error, into mtots_core::Error
Special configurable behavior for Table or Handle values
These behaviors are special and not set with methods because
they need to be run in contexts where
1. Globals is not available, and/or
2. they are not failable, and so failure would
mean panic, making debugging purely from script-land
fairly unpleasant
Kind of like Cow, but might also be a Ref (from a RefCell)
Also, does not use ToOwned.
This is because the main point of an XRef is not to Copy On Write,
but to either hold an owned value or a reference to a value
Kind of like Cow, but might also be a RefMut (from a RefCell)
Also, does not use ToOwned.
This is because the main point of an XRefMut is not to Copy On Write,
but to either hold an owned value or a reference to a value