Enum relay_filter::FilterStatKey
source · pub enum FilterStatKey {
IpAddress,
ReleaseVersion,
ErrorMessage,
BrowserExtensions,
LegacyBrowsers,
Localhost,
WebCrawlers,
InvalidCsp,
FilteredTransactions,
DeniedName,
DisabledNamespace,
GenericFilter(String),
}
Expand description
Identifies which filter dropped an event for which reason.
Ported from Sentry’s same-named “enum”. The enum variants are fed into outcomes in kebap-case (e.g. “browser-extensions”)
Variants§
IpAddress
Filtered by ip address.
ReleaseVersion
Filtered by release name (version).
ErrorMessage
Filtered by error message.
BrowserExtensions
Filtered by browser extension.
LegacyBrowsers
Filtered by legacy browser version.
Localhost
Filtered due to localhost restriction.
WebCrawlers
Filtered as known web crawler.
InvalidCsp
Filtered due to invalid CSP policy.
FilteredTransactions
Filtered due to the fact that it was a call to a filtered transaction
DeniedName
Filtered due to name being denied.
DisabledNamespace
Filtered due to the namespace being disabled.
GenericFilter(String)
Filtered due to a generic filter.
Implementations§
Trait Implementations§
source§impl Clone for FilterStatKey
impl Clone for FilterStatKey
source§fn clone(&self) -> FilterStatKey
fn clone(&self) -> FilterStatKey
Returns a copy 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 FilterStatKey
impl Debug for FilterStatKey
source§impl Display for FilterStatKey
impl Display for FilterStatKey
source§impl Hash for FilterStatKey
impl Hash for FilterStatKey
source§impl PartialEq for FilterStatKey
impl PartialEq for FilterStatKey
source§impl Serialize for FilterStatKey
impl Serialize for FilterStatKey
source§impl<'a> TryFrom<&'a str> for FilterStatKey
impl<'a> TryFrom<&'a str> for FilterStatKey
impl Eq for FilterStatKey
impl StructuralPartialEq for FilterStatKey
Auto Trait Implementations§
impl Freeze for FilterStatKey
impl RefUnwindSafe for FilterStatKey
impl Send for FilterStatKey
impl Sync for FilterStatKey
impl Unpin for FilterStatKey
impl UnwindSafe for FilterStatKey
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.