pub enum EventSinkInactiveReason {
UnsupportedProtocolVersion {
requested: u16,
supported: u16,
},
InstallIncomplete,
PlatformIneligible,
ServiceDisabled,
ObservationPermissionNotGranted {
permission: ObservationPermissionId,
},
}Variants§
UnsupportedProtocolVersion
InstallIncomplete
PlatformIneligible
ServiceDisabled
ObservationPermissionNotGranted
The manifest narrows delivery using a field that the host has not granted this sink permission to observe. Keeping the sink inactive avoids turning delivery versus non-delivery into a side channel.
Fields
§
permission: ObservationPermissionIdTrait Implementations§
Source§impl Clone for EventSinkInactiveReason
impl Clone for EventSinkInactiveReason
Source§fn clone(&self) -> EventSinkInactiveReason
fn clone(&self) -> EventSinkInactiveReason
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EventSinkInactiveReason
impl Debug for EventSinkInactiveReason
Source§impl<'de> Deserialize<'de> for EventSinkInactiveReason
impl<'de> Deserialize<'de> for EventSinkInactiveReason
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for EventSinkInactiveReason
Source§impl PartialEq for EventSinkInactiveReason
impl PartialEq for EventSinkInactiveReason
Source§impl Serialize for EventSinkInactiveReason
impl Serialize for EventSinkInactiveReason
impl StructuralPartialEq for EventSinkInactiveReason
Auto Trait Implementations§
impl Freeze for EventSinkInactiveReason
impl RefUnwindSafe for EventSinkInactiveReason
impl Send for EventSinkInactiveReason
impl Sync for EventSinkInactiveReason
impl Unpin for EventSinkInactiveReason
impl UnsafeUnpin for EventSinkInactiveReason
impl UnwindSafe for EventSinkInactiveReason
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.