use Any;
use crate::;
/// The Funcktion trait must be implemented by any cloud functions to be loaded in the system.
///
/// This trait is usually implemented via the mandatory [`export`] macro. If you decide to implement
/// this yourself, beware since the `_call_internal` method will be called by the server through FFI.
/// This means that `_call_internal` **MUST** handle _all_ unwinding panics to avoid undefined
/// behavior.
///
/// [`export`]: ./macro.export!.html