use cratePolarsResult;
type SignalsFunction = fn ;
static mut SIGNALS_FUNCTION: = None;
/// Set the function that will be called check_signals.
/// This can be set on startup to enable stopping a query when user input like `ctrl-c` is called.
///
/// # Safety
/// The caller must ensure there is no other thread accessing this function
/// or calling `check_signals`.
pub unsafe