pub struct DataflowResult {
pub uuid: Uuid,
pub timestamp: Timestamp,
pub node_results: BTreeMap<NodeId, Result<(), NodeError>>,
}Fields§
§uuid: Uuid§timestamp: Timestamp§node_results: BTreeMap<NodeId, Result<(), NodeError>>Implementations§
Trait Implementations§
Source§impl Clone for DataflowResult
impl Clone for DataflowResult
Source§fn clone(&self) -> DataflowResult
fn clone(&self) -> DataflowResult
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DataflowResult
impl Debug for DataflowResult
Source§impl<'de> Deserialize<'de> for DataflowResult
impl<'de> Deserialize<'de> for DataflowResult
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 DataflowResult
impl RefUnwindSafe for DataflowResult
impl Send for DataflowResult
impl Sync for DataflowResult
impl Unpin for DataflowResult
impl UnwindSafe for DataflowResult
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