pub struct StreamFetchRequest {
pub stream_id: Uuid,
pub source_key: String,
pub since: Option<DateTime<Utc>>,
}Expand description
Asks a backend for readings for one stream since a cursor.
Fields§
§stream_id: Uuid§source_key: String§since: Option<DateTime<Utc>>Last known reading time. None on a new stream or a full sync.
Trait Implementations§
Source§impl Clone for StreamFetchRequest
impl Clone for StreamFetchRequest
Source§fn clone(&self) -> StreamFetchRequest
fn clone(&self) -> StreamFetchRequest
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 moreAuto Trait Implementations§
impl Freeze for StreamFetchRequest
impl RefUnwindSafe for StreamFetchRequest
impl Send for StreamFetchRequest
impl Sync for StreamFetchRequest
impl Unpin for StreamFetchRequest
impl UnsafeUnpin for StreamFetchRequest
impl UnwindSafe for StreamFetchRequest
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