pub struct SearchRestrictionParams {
pub action: Option<Strings>,
pub actor: Option<Strings>,
pub message: Option<Strings>,
pub new: Option<Strings>,
pub old: Option<Strings>,
pub received_at: Option<Strings>,
pub source: Option<Strings>,
pub status: Option<Strings>,
pub target: Option<Strings>,
pub tenant_id: Option<Strings>,
pub timestamp: Option<Strings>,
}Expand description
Parameters for restricting search results, for example if you only wanted to see events from a specific actor or source
Fields§
§action: Option<Strings>A list of actions to restrict the search to
actor: Option<Strings>A list of actors to restrict the search to
message: Option<Strings>A list of messages to restrict the search to
new: Option<Strings>A list of new values to restrict the search to
old: Option<Strings>A list of old values to restrict the search to
received_at: Option<Strings>A list of received_at timestamps to restrict the search to. This is the timestamp provided by Pangea when logging the event.
source: Option<Strings>A list of sources to restrict the search to
status: Option<Strings>A list of statuses to restrict the search to
target: Option<Strings>A list of targets to restrict the search to
tenant_id: Option<Strings>A list of tenant_ids to restrict the search to
timestamp: Option<Strings>A list of timestamps to restrict the search to. This is the timestamp provided by the client when logging the event.
Trait Implementations§
Source§impl Clone for SearchRestrictionParams
impl Clone for SearchRestrictionParams
Source§fn clone(&self) -> SearchRestrictionParams
fn clone(&self) -> SearchRestrictionParams
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more