pub struct ProjectFiltersConfig {
pub browser_extensions: FilterConfig,
pub client_ips: ClientIpsFilterConfig,
pub web_crawlers: FilterConfig,
pub csp: CspFilterConfig,
pub error_messages: ErrorMessagesFilterConfig,
pub legacy_browsers: LegacyBrowsersFilterConfig,
pub localhost: FilterConfig,
pub releases: ReleasesFilterConfig,
pub ignore_transactions: IgnoreTransactionsFilterConfig,
pub generic: GenericFiltersConfig,
}Expand description
Configuration for all event filters from project configs.
Fields§
§browser_extensions: FilterConfigConfiguration for the Browser Extensions filter.
client_ips: ClientIpsFilterConfigConfiguration for the Client IPs filter.
web_crawlers: FilterConfigConfiguration for the Web Crawlers filter
csp: CspFilterConfigConfiguration for the CSP filter.
error_messages: ErrorMessagesFilterConfigConfiguration for the Error Messages filter.
legacy_browsers: LegacyBrowsersFilterConfigConfiguration for the Legacy Browsers filter.
localhost: FilterConfigConfiguration for the Localhost filter.
releases: ReleasesFilterConfigConfiguration for the releases filter.
ignore_transactions: IgnoreTransactionsFilterConfigConfiguration for ignore transactions filter.
generic: GenericFiltersConfigConfiguration for generic filters from the project configs.
Implementations§
Trait Implementations§
Source§impl Clone for ProjectFiltersConfig
impl Clone for ProjectFiltersConfig
Source§fn clone(&self) -> ProjectFiltersConfig
fn clone(&self) -> ProjectFiltersConfig
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 ProjectFiltersConfig
impl Debug for ProjectFiltersConfig
Source§impl Default for ProjectFiltersConfig
impl Default for ProjectFiltersConfig
Source§fn default() -> ProjectFiltersConfig
fn default() -> ProjectFiltersConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectFiltersConfig
impl<'de> Deserialize<'de> for ProjectFiltersConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ProjectFiltersConfig
impl RefUnwindSafe for ProjectFiltersConfig
impl Send for ProjectFiltersConfig
impl Sync for ProjectFiltersConfig
impl Unpin for ProjectFiltersConfig
impl UnsafeUnpin for ProjectFiltersConfig
impl UnwindSafe for ProjectFiltersConfig
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more