1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use objc2::__framework_prelude::*;
use crate::*;
/// The status of an asset pack.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/backgroundassets/baassetpackstatus?language=objc)
// NS_OPTIONS
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct BAAssetPackStatus(pub NSUInteger);
bitflags::bitflags! {
impl BAAssetPackStatus: NSUInteger {
/// A status value that indicates that the asset pack is available to download.
#[doc(alias = "BAAssetPackStatusDownloadAvailable")]
const DownloadAvailable = 1<<0;
/// A status value that indicates that an update to the asset pack is available to download.
#[doc(alias = "BAAssetPackStatusUpdateAvailable")]
const UpdateAvailable = 1<<1;
/// A status value that indicates that the downloaded asset pack is up to date.
#[doc(alias = "BAAssetPackStatusUpToDate")]
const UpToDate = 1<<2;
/// A status value that indicates that the downloaded asset pack is out of date.
///
/// The presence of this status value doesn’t necessarily imply that an update to the asset pack can be downloaded over the current network connection. Check for the presence of ``BAAssetPackStatus/updateAvailable`` to determine whether an update can currently be downloaded.
#[doc(alias = "BAAssetPackStatusOutOfDate")]
const OutOfDate = 1<<3;
/// A status value that indicates that the asset pack is no longer available to download.
///
/// Obsolete asset packs can’t be updated, and they also can’t be redownloaded once removed.
#[doc(alias = "BAAssetPackStatusObsolete")]
const Obsolete = 1<<4;
/// A status value that indicates that the system is currently downloading the asset pack.
#[doc(alias = "BAAssetPackStatusDownloading")]
const Downloading = 1<<5;
/// A status value that indicates that the system finished downloading the asset pack.
#[doc(alias = "BAAssetPackStatusDownloaded")]
const Downloaded = 1<<6;
}
}
unsafe impl Encode for BAAssetPackStatus {
const ENCODING: Encoding = NSUInteger::ENCODING;
}
unsafe impl RefEncode for BAAssetPackStatus {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}