cidre 0.11.1

Apple frameworks bindings for rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::{define_obj_type, ns, objc};

define_obj_type!(
    #[doc(alias = "CMLogItem")]
    pub LogItem(ns::Id)
);

impl LogItem {
    #[objc::msg_send(timestamp)]
    pub fn timestamp(&self) -> ns::TimeInterval;
}