pub struct Filters {
pub id: Option<String>,
pub ids: Option<Vec<String>>,
pub last: Option<f64>,
pub level: Option<String>,
pub status: Option<f64>,
pub failed: Option<bool>,
pub limit: Option<usize>,
pub source: Option<String>,
pub subcommand: Option<String>,
pub name: Option<String>,
pub key: Option<String>,
pub storage_type: Option<String>,
}Expand description
Query filters sent by the CLI client.
Fields§
§id: Option<String>Look up a single entry by ID.
ids: Option<Vec<String>>Look up multiple entries by ID.
last: Option<f64>Return entries from the last N milliseconds.
level: Option<String>Filter by log level.
status: Option<f64>Filter network entries by HTTP status.
failed: Option<bool>If true, return only failed network requests.
limit: Option<usize>Max number of entries to return.
source: Option<String>Filter entries by source ("browser" or "server").
subcommand: Option<String>Sub-command qualifier.
name: Option<String>Filter by name.
key: Option<String>Filter by key.
storage_type: Option<String>Filter by storage type.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Filters
impl<'de> Deserialize<'de> for Filters
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 Filters
impl RefUnwindSafe for Filters
impl Send for Filters
impl Sync for Filters
impl Unpin for Filters
impl UnsafeUnpin for Filters
impl UnwindSafe for Filters
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