pub struct EventsListOptions {
pub stream_type: Option<GetStreamType>,
pub stream_position: Option<String>,
pub limit: Option<i64>,
pub event_type: Option<Vec<GetEventType>>,
pub created_after: Option<String>,
pub created_before: Option<String>,
}Expand description
Optional parameters for EventsManager::list.
Fields§
§stream_type: Option<GetStreamType>§stream_position: Option<String>§limit: Option<i64>§event_type: Option<Vec<GetEventType>>§created_after: Option<String>§created_before: Option<String>Trait Implementations§
Source§impl Clone for EventsListOptions
impl Clone for EventsListOptions
Source§fn clone(&self) -> EventsListOptions
fn clone(&self) -> EventsListOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EventsListOptions
impl Debug for EventsListOptions
Source§impl Default for EventsListOptions
impl Default for EventsListOptions
Source§fn default() -> EventsListOptions
fn default() -> EventsListOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EventsListOptions
impl RefUnwindSafe for EventsListOptions
impl Send for EventsListOptions
impl Sync for EventsListOptions
impl Unpin for EventsListOptions
impl UnsafeUnpin for EventsListOptions
impl UnwindSafe for EventsListOptions
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