pub struct LogsQuery {
pub stime: Option<String>,
pub etime: Option<String>,
pub order: Option<String>,
pub limit: Option<u32>,
pub offset: Option<u32>,
}
Expand description
Logs query parameters
Fields§
§stime: Option<String>
Optional start time before which we don’t want events
etime: Option<String>
Optional end time after which we don’t want events
order: Option<String>
Order of events: “desc” (descending) or “asc” (ascending, default)
limit: Option<u32>
Optional maximum number of events to return
offset: Option<u32>
Optional offset - skip this many events before returning results (for pagination)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LogsQuery
impl RefUnwindSafe for LogsQuery
impl Send for LogsQuery
impl Sync for LogsQuery
impl Unpin for LogsQuery
impl UnwindSafe for LogsQuery
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