pub struct SinkEventsQuery {
pub from_sn: Option<u64>,
pub to_sn: Option<u64>,
pub limit: Option<u64>,
}Expand description
Range query for replaying sink-formatted events.
Fields§
§from_sn: Option<u64>§to_sn: Option<u64>§limit: Option<u64>Trait Implementations§
Source§impl Clone for SinkEventsQuery
impl Clone for SinkEventsQuery
Source§fn clone(&self) -> SinkEventsQuery
fn clone(&self) -> SinkEventsQuery
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 SinkEventsQuery
impl Debug for SinkEventsQuery
Source§impl<'de> Deserialize<'de> for SinkEventsQuery
impl<'de> Deserialize<'de> for SinkEventsQuery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SinkEventsQuery
impl RefUnwindSafe for SinkEventsQuery
impl Send for SinkEventsQuery
impl Sync for SinkEventsQuery
impl Unpin for SinkEventsQuery
impl UnsafeUnpin for SinkEventsQuery
impl UnwindSafe for SinkEventsQuery
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