pub enum Select {
All,
From(u32),
}Expand description
Selection operation for the events to capture in an EventStream.
Variants§
All
To return all the Events in the EventStream.
From(u32)
To return a slice of the EventStream, starting from
those Events with version greater or equal than
the one specified in this variant.
Trait Implementations§
impl Copy for Select
impl Eq for Select
impl StructuralPartialEq for Select
Auto Trait Implementations§
impl Freeze for Select
impl RefUnwindSafe for Select
impl Send for Select
impl Sync for Select
impl Unpin for Select
impl UnwindSafe for Select
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