gio 0.22.2

Rust bindings for the Gio library
Documentation
// Take a look at the license at the top of the repository in the LICENSE file.

use glib::{ExitCode, prelude::*, translate::*};

use crate::{ApplicationCommandLine, ffi};

pub trait ApplicationCommandLineExtManual: IsA<ApplicationCommandLine> {
    #[doc(alias = "g_application_command_line_get_exit_status")]
    #[doc(alias = "get_exit_status")]
    fn exit_code(&self) -> ExitCode {
        let status = unsafe {
            ffi::g_application_command_line_get_exit_status(self.as_ref().to_glib_none().0)
        };

        ExitCode::try_from(status).unwrap()
    }

    #[doc(alias = "g_application_command_line_set_exit_status")]
    #[doc(alias = "set_exit_status")]
    fn set_exit_code(&self, exit_code: ExitCode) {
        let status = i32::from(exit_code.get());

        unsafe {
            ffi::g_application_command_line_set_exit_status(self.as_ref().to_glib_none().0, status);
        }
    }
}

impl<O: IsA<ApplicationCommandLine>> ApplicationCommandLineExtManual for O {}