pub struct EventIndexParams {
pub limit: Option<u32>,
pub page: Option<u32>,
pub sort: Option<String>,
pub direction: Option<String>,
pub minimal: Option<bool>,
pub published: Option<bool>,
pub org: Option<String>,
pub tags: Option<Vec<String>>,
pub from: Option<String>,
pub to: Option<String>,
}Fields§
§limit: Option<u32>§page: Option<u32>§sort: Option<String>§direction: Option<String>§minimal: Option<bool>§published: Option<bool>§org: Option<String>§from: Option<String>§to: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for EventIndexParams
impl Clone for EventIndexParams
Source§fn clone(&self) -> EventIndexParams
fn clone(&self) -> EventIndexParams
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 moreSource§impl Debug for EventIndexParams
impl Debug for EventIndexParams
Source§impl Default for EventIndexParams
impl Default for EventIndexParams
Source§fn default() -> EventIndexParams
fn default() -> EventIndexParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EventIndexParams
impl RefUnwindSafe for EventIndexParams
impl Send for EventIndexParams
impl Sync for EventIndexParams
impl Unpin for EventIndexParams
impl UnwindSafe for EventIndexParams
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