pub struct SinkEventsPage {
pub from_sn: u64,
pub to_sn: Option<u64>,
pub limit: u64,
pub next_sn: Option<u64>,
pub has_more: bool,
pub events: Vec<DataToSink>,
}Fields§
§from_sn: u64§to_sn: Option<u64>§limit: u64§next_sn: Option<u64>§has_more: bool§events: Vec<DataToSink>Trait Implementations§
Source§impl Clone for SinkEventsPage
impl Clone for SinkEventsPage
Source§fn clone(&self) -> SinkEventsPage
fn clone(&self) -> SinkEventsPage
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 SinkEventsPage
impl Debug for SinkEventsPage
Source§impl<'de> Deserialize<'de> for SinkEventsPage
impl<'de> Deserialize<'de> for SinkEventsPage
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 SinkEventsPage
impl RefUnwindSafe for SinkEventsPage
impl Send for SinkEventsPage
impl Sync for SinkEventsPage
impl Unpin for SinkEventsPage
impl UnsafeUnpin for SinkEventsPage
impl UnwindSafe for SinkEventsPage
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