pub struct StreamReadings {
pub stream_id: Uuid,
pub source_key: String,
pub readings: Vec<IngestReading>,
}Expand description
Readings fetched for one stream, ready to ingest.
Fields§
§stream_id: Uuid§source_key: String§readings: Vec<IngestReading>Trait Implementations§
Auto Trait Implementations§
impl Freeze for StreamReadings
impl RefUnwindSafe for StreamReadings
impl Send for StreamReadings
impl Sync for StreamReadings
impl Unpin for StreamReadings
impl UnsafeUnpin for StreamReadings
impl UnwindSafe for StreamReadings
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