pub struct LogsQuery {
pub query: String,
pub from: String,
pub to: String,
pub limit: Option<u32>,
}Expand description
Parameters for a logs search query
Fields§
§query: String§from: String§to: String§limit: Option<u32>Maximum number of logs to retrieve. None = fetch all.
Implementations§
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