pub struct SentryIntakeSource;Expand description
Sentry intake source stub.
This is intentionally a compile-safe placeholder so downstream callers can depend on the source type now while the concrete Sentry envelope/event translation is implemented in a later issue.
Trait Implementations§
Source§impl Clone for SentryIntakeSource
impl Clone for SentryIntakeSource
Source§fn clone(&self) -> SentryIntakeSource
fn clone(&self) -> SentryIntakeSource
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 SentryIntakeSource
impl Debug for SentryIntakeSource
Source§impl Default for SentryIntakeSource
impl Default for SentryIntakeSource
Source§fn default() -> SentryIntakeSource
fn default() -> SentryIntakeSource
Returns the “default value” for a type. Read more
Source§impl IntakeSource for SentryIntakeSource
impl IntakeSource for SentryIntakeSource
Source§fn source_type(&self) -> IntakeSourceType
fn source_type(&self) -> IntakeSourceType
Get the source type
Source§fn process(&self, _payload: &[u8]) -> IntakeResult<Vec<IntakeEvent>>
fn process(&self, _payload: &[u8]) -> IntakeResult<Vec<IntakeEvent>>
Process incoming data and extract potential issues
Auto Trait Implementations§
impl Freeze for SentryIntakeSource
impl RefUnwindSafe for SentryIntakeSource
impl Send for SentryIntakeSource
impl Sync for SentryIntakeSource
impl Unpin for SentryIntakeSource
impl UnsafeUnpin for SentryIntakeSource
impl UnwindSafe for SentryIntakeSource
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