[][src]Struct clingo_sys::clingo_application

#[repr(C)]
pub struct clingo_application { pub program_name: Option<unsafe extern "C" fn(data: *mut c_void) -> *const c_char>, pub version: Option<unsafe extern "C" fn(data: *mut c_void) -> *const c_char>, pub message_limit: Option<unsafe extern "C" fn(data: *mut c_void) -> c_uint>, pub main: clingo_main_function_t, pub logger: clingo_logger_t, pub printer: clingo_model_printer_t, pub register_options: Option<unsafe extern "C" fn(options: *mut clingo_options_t, data: *mut c_void) -> bool>, pub validate_options: Option<unsafe extern "C" fn(data: *mut c_void) -> bool>, }

This struct contains a set of functions to customize the clingo application.

Fields

program_name: Option<unsafe extern "C" fn(data: *mut c_void) -> *const c_char>

callback to obtain program name

version: Option<unsafe extern "C" fn(data: *mut c_void) -> *const c_char>

callback to obtain version information

message_limit: Option<unsafe extern "C" fn(data: *mut c_void) -> c_uint>

callback to obtain message limit

main: clingo_main_function_t

callback to override clingo's main function

logger: clingo_logger_t

callback to override default logger

printer: clingo_model_printer_t

callback to override default model printing

register_options: Option<unsafe extern "C" fn(options: *mut clingo_options_t, data: *mut c_void) -> bool>

callback to register options

validate_options: Option<unsafe extern "C" fn(data: *mut c_void) -> bool>

callback validate options

Trait Implementations

impl Clone for clingo_application[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for clingo_application[src]

impl Debug for clingo_application[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]