pub enum DecodedBinaryFrame {
Metadata(DecodedCallsiteMetadata),
Event(DecodedRecord),
}Expand description
Decoded binary frame.
Variants§
Metadata(DecodedCallsiteMetadata)
Event(DecodedRecord)
Trait Implementations§
Source§impl Clone for DecodedBinaryFrame
impl Clone for DecodedBinaryFrame
Source§fn clone(&self) -> DecodedBinaryFrame
fn clone(&self) -> DecodedBinaryFrame
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 DecodedBinaryFrame
impl Debug for DecodedBinaryFrame
Source§impl PartialEq for DecodedBinaryFrame
impl PartialEq for DecodedBinaryFrame
impl StructuralPartialEq for DecodedBinaryFrame
Auto Trait Implementations§
impl Freeze for DecodedBinaryFrame
impl RefUnwindSafe for DecodedBinaryFrame
impl Send for DecodedBinaryFrame
impl Sync for DecodedBinaryFrame
impl Unpin for DecodedBinaryFrame
impl UnsafeUnpin for DecodedBinaryFrame
impl UnwindSafe for DecodedBinaryFrame
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