pub struct FlowFinish {
pub time: DateTime<Utc>,
pub not_run: Vec<NodeId>,
pub output: Value,
}Fields§
§time: DateTime<Utc>§not_run: Vec<NodeId>§output: ValueTrait Implementations§
Source§impl Clone for FlowFinish
impl Clone for FlowFinish
Source§fn clone(&self) -> FlowFinish
fn clone(&self) -> FlowFinish
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 moreSource§impl Debug for FlowFinish
impl Debug for FlowFinish
Source§impl Default for FlowFinish
impl Default for FlowFinish
Source§fn default() -> FlowFinish
fn default() -> FlowFinish
Returns the “default value” for a type. Read more
Source§impl From<FlowFinish> for Event
impl From<FlowFinish> for Event
Source§fn from(value: FlowFinish) -> Self
fn from(value: FlowFinish) -> Self
Converts to this type from the input type.
Source§impl Message for FlowFinish
impl Message for FlowFinish
Auto Trait Implementations§
impl !Freeze for FlowFinish
impl RefUnwindSafe for FlowFinish
impl Send for FlowFinish
impl Sync for FlowFinish
impl Unpin for FlowFinish
impl UnwindSafe for FlowFinish
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,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more