pub struct ListEventsParams {
pub name: Option<String>,
pub visibility: Option<Visibility>,
pub page: Option<u32>,
pub page_size: Option<u32>,
}Expand description
Parameters for listing events
Fields§
§name: Option<String>Filter by event name
visibility: Option<Visibility>Filter by visibility
page: Option<u32>Page number
page_size: Option<u32>Page size
Trait Implementations§
Source§impl Clone for ListEventsParams
impl Clone for ListEventsParams
Source§fn clone(&self) -> ListEventsParams
fn clone(&self) -> ListEventsParams
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 ListEventsParams
impl Debug for ListEventsParams
Source§impl Default for ListEventsParams
impl Default for ListEventsParams
Source§fn default() -> ListEventsParams
fn default() -> ListEventsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListEventsParams
impl RefUnwindSafe for ListEventsParams
impl Send for ListEventsParams
impl Sync for ListEventsParams
impl Unpin for ListEventsParams
impl UnwindSafe for ListEventsParams
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