[][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]

impl Copy for clingo_application[src]

impl Debug for clingo_application[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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