pub struct ProcessOutputChunk {
pub stream_type: StreamType,
pub data: String,
pub timestamp: DateTime<Utc>,
}Expand description
Process output chunk
Fields§
§stream_type: StreamType§data: String§timestamp: DateTime<Utc>Trait Implementations§
Source§impl Clone for ProcessOutputChunk
impl Clone for ProcessOutputChunk
Source§fn clone(&self) -> ProcessOutputChunk
fn clone(&self) -> ProcessOutputChunk
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 ProcessOutputChunk
impl Debug for ProcessOutputChunk
Source§impl<'de> Deserialize<'de> for ProcessOutputChunk
impl<'de> Deserialize<'de> for ProcessOutputChunk
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 ProcessOutputChunk
impl RefUnwindSafe for ProcessOutputChunk
impl Send for ProcessOutputChunk
impl Sync for ProcessOutputChunk
impl Unpin for ProcessOutputChunk
impl UnsafeUnpin for ProcessOutputChunk
impl UnwindSafe for ProcessOutputChunk
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