pub struct StreamChunkRef {
pub stream_id: String,
pub chunk_id: String,
pub offset: Value,
pub content_ref: Option<String>,
pub content_hash: Option<String>,
pub sequence: Option<f64>,
pub event_time: Option<f64>,
pub metadata: State,
}Fields§
§stream_id: String§chunk_id: String§offset: Value§content_ref: Option<String>§content_hash: Option<String>§sequence: Option<f64>§event_time: Option<f64>§metadata: StateTrait Implementations§
Source§impl Clone for StreamChunkRef
impl Clone for StreamChunkRef
Source§fn clone(&self) -> StreamChunkRef
fn clone(&self) -> StreamChunkRef
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 moreSource§impl Debug for StreamChunkRef
impl Debug for StreamChunkRef
Source§impl Default for StreamChunkRef
impl Default for StreamChunkRef
Source§fn default() -> StreamChunkRef
fn default() -> StreamChunkRef
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StreamChunkRef
impl RefUnwindSafe for StreamChunkRef
impl Send for StreamChunkRef
impl Sync for StreamChunkRef
impl Unpin for StreamChunkRef
impl UnsafeUnpin for StreamChunkRef
impl UnwindSafe for StreamChunkRef
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