pub enum ExportMessage {
Traces(Bytes),
Logs(Bytes),
Metrics(Bytes),
Flush(Sender<()>),
Shutdown(Sender<()>),
}Expand description
Message types sent to the exporter background task.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for ExportMessage
impl !RefUnwindSafe for ExportMessage
impl Send for ExportMessage
impl Sync for ExportMessage
impl Unpin for ExportMessage
impl UnsafeUnpin for ExportMessage
impl !UnwindSafe for ExportMessage
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