pub struct EventsQuery {
pub query: String,
pub from: String,
pub to: String,
pub limit: Option<u32>,
}Expand description
Parameters for an events search query
Fields§
§query: String§from: String§to: String§limit: Option<u32>Maximum number of events to retrieve. None = fetch all.
Implementations§
Trait Implementations§
Source§impl Clone for EventsQuery
impl Clone for EventsQuery
Source§fn clone(&self) -> EventsQuery
fn clone(&self) -> EventsQuery
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 EventsQuery
impl RefUnwindSafe for EventsQuery
impl Send for EventsQuery
impl Sync for EventsQuery
impl Unpin for EventsQuery
impl UnwindSafe for EventsQuery
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