tracker-rs 0.8.0

Rust bindings for tracker
Documentation
macro_rules! assert_initialized_main_thread {
    () => {
        // TODO: Check if tracker is initialized and this is a thread where it's allowed to use the
        // tracker API. Or if tracker does not have such constraints then set
        // `generate_safety_asserts = false` in Gir.toml
    };
}

macro_rules! skip_assert_initialized {
    () => {};
}

mod auto;
pub mod prelude;
pub use auto::*;
pub use ffi;

pub mod builders {
    pub use crate::auto::builders::*;
}

pub mod functions {
    pub use crate::auto::functions::*;
}

//mod resource;
#[cfg(feature = "v3_1")]
mod batch;
mod notifier;
mod sparql_connection;
mod sparql_cursor;