libgir/analysis/
general.rs

1use crate::{config::gobjects::*, library::*};
2
3#[derive(Debug, Clone)]
4pub struct StatusedTypeId {
5    pub type_id: TypeId,
6    pub name: String,
7    pub status: GStatus,
8}