pub type igraph_fatal_handler_t = Option<unsafe extern "C" fn(reason: *const c_char, file: *const c_char, line: c_int)>;Expand description
\typedef igraph_fatal_handler_t \brief The type of igraph fatal error handler functions.
Functions of this type \em must not return. Typically they
call abort() or do a longjmp().
\param reason Textual description of the error. \param file The source file in which the error is noticed. \param line The number of the line in the source file which triggered the error.
Aliased Type§
pub enum igraph_fatal_handler_t {
None,
Some(unsafe extern "C" fn(*const i8, *const i8, i32)),
}