mdquery-rs 0.2.1

A Rust binding library for macOS Spotlight search using Metadata Query API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod api;
mod builder;
mod item;
mod model;
mod query;

#[cfg(feature = "async")]
mod query_async;

pub use builder::*;
pub use item::*;
pub use model::*;
pub use query::*;

#[cfg(feature = "async")]
pub use query_async::*;