diff --git a/help.html b/help.html index f23987b6a8..fbeea76065 100644 --- a/help.html +++ b/help.html @@ -1 +1 @@ -
pub trait Filterable {
// Required methods
- fn csp(&self) -> Option<&Csp>;
- fn exceptions(&self) -> Option<&Values<Exception>>;
+ fn csp(&self) -> Option<&Csp>;
+ fn exceptions(&self) -> Option<&Values<Exception>>;
fn ip_addr(&self) -> Option<&str>;
- fn logentry(&self) -> Option<&LogEntry>;
+ fn logentry(&self) -> Option<&LogEntry>;
fn release(&self) -> Option<&str>;
fn transaction(&self) -> Option<&str>;
fn url(&self) -> Option<Url>;
fn user_agent(&self) -> Option<&str>;
}
A data item to which filters can be applied.
-The exception values of the item. Only for error events.
+The exception values of the item. Only for error events.
The transaction name. Only for transaction events.
The URL from which the request originates. Used for localhost filtering.
The user agent of the client that sent the data.
-