pub enum PayloadDescriptor {
EventPayloadDescriptor(EventPayloadDescriptor),
ReportPayloadDescriptor(ReportPayloadDescriptor),
}
Variants§
EventPayloadDescriptor(EventPayloadDescriptor)
ReportPayloadDescriptor(ReportPayloadDescriptor)
Trait Implementations§
Source§impl Clone for PayloadDescriptor
impl Clone for PayloadDescriptor
Source§fn clone(&self) -> PayloadDescriptor
fn clone(&self) -> PayloadDescriptor
Returns a duplicate of the value. Read more
1.0.0 · 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 PayloadDescriptor
impl Debug for PayloadDescriptor
Source§impl<'de> Deserialize<'de> for PayloadDescriptor
impl<'de> Deserialize<'de> for PayloadDescriptor
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 PayloadDescriptor
impl PartialEq for PayloadDescriptor
Source§impl Serialize for PayloadDescriptor
impl Serialize for PayloadDescriptor
impl StructuralPartialEq for PayloadDescriptor
Auto Trait Implementations§
impl Freeze for PayloadDescriptor
impl RefUnwindSafe for PayloadDescriptor
impl Send for PayloadDescriptor
impl Sync for PayloadDescriptor
impl Unpin for PayloadDescriptor
impl UnwindSafe for PayloadDescriptor
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