pub struct OutputEvent {
pub pipeline_name: String,
pub server_name: String,
pub step: Step,
pub output_type: OutputType,
pub content: String,
pub timestamp: Instant,
pub variables: HashMap<String, String>,
}
Expand description
实时输出事件
Fields§
§pipeline_name: String
§server_name: String
§step: Step
§output_type: OutputType
§content: String
§timestamp: Instant
§variables: HashMap<String, String>
Trait Implementations§
Source§impl Clone for OutputEvent
impl Clone for OutputEvent
Source§fn clone(&self) -> OutputEvent
fn clone(&self) -> OutputEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for OutputEvent
impl RefUnwindSafe for OutputEvent
impl Send for OutputEvent
impl Sync for OutputEvent
impl Unpin for OutputEvent
impl UnwindSafe for OutputEvent
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