pub enum DecodedFrame {
Schema(SchemaEntry),
Event {
type_id: WireTypeId,
timestamp_ns: Option<u64>,
values: Vec<FieldValue>,
},
StringPool(Vec<PoolEntry>),
StackPool(Vec<StackPoolEntry>),
SchemaAnnotations {
type_id: WireTypeId,
annotations: Vec<FieldAnnotation>,
},
}Expand description
Decoded events yielded by the decoder.
Variants§
Schema(SchemaEntry)
Event
StringPool(Vec<PoolEntry>)
StackPool(Vec<StackPoolEntry>)
SchemaAnnotations
Trait Implementations§
Source§impl Clone for DecodedFrame
impl Clone for DecodedFrame
Source§fn clone(&self) -> DecodedFrame
fn clone(&self) -> DecodedFrame
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 DecodedFrame
impl Debug for DecodedFrame
Source§impl PartialEq for DecodedFrame
impl PartialEq for DecodedFrame
Source§fn eq(&self, other: &DecodedFrame) -> bool
fn eq(&self, other: &DecodedFrame) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DecodedFrame
Auto Trait Implementations§
impl Freeze for DecodedFrame
impl RefUnwindSafe for DecodedFrame
impl Send for DecodedFrame
impl Sync for DecodedFrame
impl Unpin for DecodedFrame
impl UnsafeUnpin for DecodedFrame
impl UnwindSafe for DecodedFrame
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