pub enum StderrTailEntry {
Line {
text: String,
truncated: bool,
},
ProcessStart,
Unknown {
tag: String,
body: OrderedJsonObject,
},
}Variants§
Line
Fields
ProcessStart
The supervisor spawned a new process. Entries after this came from it.
In-band because position is the information: which side of the restart a line falls on is unanswerable from a count.
Unknown
Future discriminator. body retains the complete ordered object; tag
is its decoded discriminator projection.
Trait Implementations§
Source§impl Clone for StderrTailEntry
impl Clone for StderrTailEntry
Source§fn clone(&self) -> StderrTailEntry
fn clone(&self) -> StderrTailEntry
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 StderrTailEntry
impl Debug for StderrTailEntry
Source§impl<'de> Deserialize<'de> for StderrTailEntry
impl<'de> Deserialize<'de> for StderrTailEntry
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
Source§impl PartialEq for StderrTailEntry
impl PartialEq for StderrTailEntry
Source§impl Serialize for StderrTailEntry
impl Serialize for StderrTailEntry
impl StructuralPartialEq for StderrTailEntry
Auto Trait Implementations§
impl Freeze for StderrTailEntry
impl RefUnwindSafe for StderrTailEntry
impl Send for StderrTailEntry
impl Sync for StderrTailEntry
impl Unpin for StderrTailEntry
impl UnsafeUnpin for StderrTailEntry
impl UnwindSafe for StderrTailEntry
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