gio 0.22.2

Rust bindings for the Gio library
Documentation
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use crate::{File, Icon, LoadableIcon, ffi};
use glib::{prelude::*, translate::*};

glib::wrapper! {
    #[doc(alias = "GFileIcon")]
    pub struct FileIcon(Object<ffi::GFileIcon, ffi::GFileIconClass>) @implements Icon, LoadableIcon;

    match fn {
        type_ => || ffi::g_file_icon_get_type(),
    }
}

impl FileIcon {
    #[doc(alias = "g_file_icon_new")]
    pub fn new(file: &impl IsA<File>) -> FileIcon {
        unsafe { from_glib_full(ffi::g_file_icon_new(file.as_ref().to_glib_none().0)) }
    }

    #[doc(alias = "g_file_icon_get_file")]
    #[doc(alias = "get_file")]
    pub fn file(&self) -> File {
        unsafe { from_glib_none(ffi::g_file_icon_get_file(self.to_glib_none().0)) }
    }
}