pub struct TerminalOutput {
pub stream_id: String,
pub seq: u64,
pub data: TerminalBytes,
}Fields§
§stream_id: String§seq: u64Monotonic within a stream, from zero. A reader that sees a gap has lost bytes to backpressure and must repaint rather than render a hole it cannot see — the same contract the run-event stream uses.
data: TerminalBytesTrait Implementations§
Source§impl Clone for TerminalOutput
impl Clone for TerminalOutput
Source§fn clone(&self) -> TerminalOutput
fn clone(&self) -> TerminalOutput
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 TerminalOutput
impl Debug for TerminalOutput
Source§impl<'de> Deserialize<'de> for TerminalOutput
impl<'de> Deserialize<'de> for TerminalOutput
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
impl Eq for TerminalOutput
Source§impl PartialEq for TerminalOutput
impl PartialEq for TerminalOutput
Source§impl Serialize for TerminalOutput
impl Serialize for TerminalOutput
impl StructuralPartialEq for TerminalOutput
Auto Trait Implementations§
impl Freeze for TerminalOutput
impl RefUnwindSafe for TerminalOutput
impl Send for TerminalOutput
impl Sync for TerminalOutput
impl Unpin for TerminalOutput
impl UnsafeUnpin for TerminalOutput
impl UnwindSafe for TerminalOutput
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.