pub struct LogSearchParams {
pub query: String,
pub start: i64,
pub end: i64,
pub limit: usize,
}Expand description
Query parameters for log search.
Fields§
§query: StringQuery expression.
start: i64Start time as Unix seconds.
end: i64End time as Unix seconds.
limit: usizeMaximum number of entries to return.
Trait Implementations§
Source§impl Clone for LogSearchParams
impl Clone for LogSearchParams
Source§fn clone(&self) -> LogSearchParams
fn clone(&self) -> LogSearchParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LogSearchParams
impl RefUnwindSafe for LogSearchParams
impl Send for LogSearchParams
impl Sync for LogSearchParams
impl Unpin for LogSearchParams
impl UnsafeUnpin for LogSearchParams
impl UnwindSafe for LogSearchParams
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