2026-09-18 13:15:08 +00:00
|
|
|
/// Immediate result of a permission request (microphone, network). Wraps `enum accessReply`.
|
2026-07-25 12:39:32 +02:00
|
|
|
public enum AccessReply: UInt32, Sendable {
|
2026-09-18 13:15:08 +00:00
|
|
|
/// Not answered yet; the completion receives the answer.
|
2026-07-25 12:39:32 +02:00
|
|
|
case ask = 0
|
2026-09-18 13:15:08 +00:00
|
|
|
/// Already denied; the completion is not called.
|
2026-07-25 12:39:32 +02:00
|
|
|
case deny = 1
|
2026-09-18 13:15:08 +00:00
|
|
|
/// Already granted; the completion is not called.
|
2026-07-25 12:39:32 +02:00
|
|
|
case allow = 2
|
|
|
|
|
}
|