pub struct FactoryLogLine {
pub kind: FactoryLogLineKind,
pub seq: i64,
pub text: String,
}Expand description
One ordered factory progress line.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§kind: FactoryLogLineKindProgress line kind.
seq: i64Monotonic sequence number within the factory run.
text: StringProgress text.
Trait Implementations§
Source§impl Clone for FactoryLogLine
impl Clone for FactoryLogLine
Source§fn clone(&self) -> FactoryLogLine
fn clone(&self) -> FactoryLogLine
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 FactoryLogLine
impl Debug for FactoryLogLine
Source§impl Default for FactoryLogLine
impl Default for FactoryLogLine
Source§fn default() -> FactoryLogLine
fn default() -> FactoryLogLine
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FactoryLogLine
impl<'de> Deserialize<'de> for FactoryLogLine
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 FactoryLogLine
impl RefUnwindSafe for FactoryLogLine
impl Send for FactoryLogLine
impl Sync for FactoryLogLine
impl Unpin for FactoryLogLine
impl UnsafeUnpin for FactoryLogLine
impl UnwindSafe for FactoryLogLine
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