pub enum RawEventPayloadPolicy {
Excluded,
OperatorOptIn,
}Expand description
Raw event payload handling for a pack.
Variants§
Excluded
Raw event payloads are removed before serialization.
OperatorOptIn
Raw event payloads may appear only after operator-mode explicit opt-in.
Trait Implementations§
Source§impl Clone for RawEventPayloadPolicy
impl Clone for RawEventPayloadPolicy
Source§fn clone(&self) -> RawEventPayloadPolicy
fn clone(&self) -> RawEventPayloadPolicy
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 RawEventPayloadPolicy
impl Debug for RawEventPayloadPolicy
Source§impl<'de> Deserialize<'de> for RawEventPayloadPolicy
impl<'de> Deserialize<'de> for RawEventPayloadPolicy
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
Source§impl PartialEq for RawEventPayloadPolicy
impl PartialEq for RawEventPayloadPolicy
Source§fn eq(&self, other: &RawEventPayloadPolicy) -> bool
fn eq(&self, other: &RawEventPayloadPolicy) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RawEventPayloadPolicy
impl Serialize for RawEventPayloadPolicy
impl Copy for RawEventPayloadPolicy
impl Eq for RawEventPayloadPolicy
impl StructuralPartialEq for RawEventPayloadPolicy
Auto Trait Implementations§
impl Freeze for RawEventPayloadPolicy
impl RefUnwindSafe for RawEventPayloadPolicy
impl Send for RawEventPayloadPolicy
impl Sync for RawEventPayloadPolicy
impl Unpin for RawEventPayloadPolicy
impl UnsafeUnpin for RawEventPayloadPolicy
impl UnwindSafe for RawEventPayloadPolicy
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