cidre 0.10.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 = "AVAssetCache")]
    pub Cache(ns::Id)
);

impl Cache {
    #[objc::msg_send(isPlayableOffline)]
    pub fn is_playable_offline(&self) -> bool;
}